Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. var entries = [
  2. {"id":1, "title":"Hello World!", "body":"This is the body of my blog entry. Sooo exciting.", "published":"01/01/2017"}];
  3.  
  4.  
  5. exports.getBlogEntries = function() {
  6. return entries;
  7. }
  8.  
  9. exports.getBlogEntry = function(id) {
  10. for(var i=0; i < entries.length; i++) {
  11. if(entries[i].id == id) return entries[i];
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement