Advertisement
Guest User

qrqw

a guest
May 10th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     var gems = [
  2.         {
  3.             name:"Azura",
  4.             price:2,
  5.             images:"https://www.kneson.com/news/III3/KELSEY_AD_example1.jpg",
  6.             reviews: [
  7.                 {
  8.                     stars: 5,
  9.                     body: "I love this gem!",
  10.                     author: "joe@example.org",
  11.                     createdOn: 1397490980837   
  12.                 },
  13.                 {
  14.                     stars: 1,
  15.                     body: "This gem sucks.",
  16.                     author: "tim@example.org",
  17.                     createdOn: 1397490980837
  18.                 }
  19.             ]
  20.         },
  21.         {
  22.             name:"Diamond",
  23.             price:3.24,
  24.             images:"https://s-media-cache-ak0.pinimg.com/originals/2b/ad/73/2bad73b476a883590edcba2ae70cda14.jpg",
  25.             reviews: [
  26.                 {
  27.                     stars: 5,
  28.                     body: "I love this gem!",
  29.                     author: "joe@example.org",
  30.                     createdOn: 1397490980837   
  31.                 },
  32.                 {
  33.                     stars: 1,
  34.                     body: "This gem sucks.",
  35.                     author: "tim@example.org",
  36.                     createdOn: 1397490980837
  37.                 }
  38.             ]
  39.         },
  40.         {
  41.             name:"Ruby",
  42.             price:5.22,
  43.             images:"",
  44.             reviews: [
  45.                 {
  46.                     stars: 5,
  47.                     body: "I love this gem!",
  48.                     author: "joe@example.org",
  49.                     createdOn: 1397490980837   
  50.                 },
  51.                 {
  52.                     stars: 1,
  53.                     body: "This gem sucks.",
  54.                     author: "tim@example.org",
  55.                     createdOn: 1397490980837
  56.                 }
  57.             ]
  58.         }
  59.     ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement