Guest User

Untitled

a guest
Jun 30th, 2018
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var p = {
  2.     title: 'Suprise',
  3.     body: 'Well done',
  4.     tags: ['first', 'post', 'english'],
  5.     author: {
  6.         name: 'Michael', // Is not unique
  7.         email: 'mo@gmail.com', // Should be also unique
  8.         fbid: '4545454asdadsa'
  9.     },
  10.     comments: [
  11.         {
  12.             body: 'Great post',
  13.             author: {
  14.                 name: 'James', // Is not unique
  15.                 email: 'mike@gmail.com', // Should be also unique
  16.                 fbid: '3432r2rewr32r3'
  17.             }
  18.             created: new Date(),
  19.             modified: new Date()
  20.         },
  21.         {
  22.             body: 'Great post another',
  23.             author: {
  24.                 name: 'John', // Is not unique
  25.                 email: 'john@gmail.com', // Should be also unique
  26.                 fbid: '3432rsada2rewr32r3'
  27.             }
  28.             created: new Date(),
  29.             modified: new Date()
  30.         }
  31.     ],
  32.     created: new Date(),
  33.     modified: new Date()
  34. };
Add Comment
Please, Sign In to add comment