Skip to content

Instantly share code, notes, and snippets.

@Matt-T-Git
Created May 15, 2020 20:50
Show Gist options
  • Save Matt-T-Git/e370d89e2ffb41357c382431fc7c25f6 to your computer and use it in GitHub Desktop.
Save Matt-T-Git/e370d89e2ffb41357c382431fc7c25f6 to your computer and use it in GitHub Desktop.
const games = [
{
"title": "Uncharted 4",
"id": 1,
"description": "For the first time ever in Uncharted history, drive vehicles during gameplay",
"by": "Sony",
"platform": ["PS4"],
"age_rating": "16",
"likes": 100,
"comments": [{
"user": "bob",
"message": "Cracking game far too much cinematic",
"dateCreated": "2011-01-03",
"like": 6
}, {
"user": "testingPriest",
"message": "Not enough shooting for me,far too easy ",
"dateCreated": "2011-04-02",
"like": 5
}]
},
{
"title": "Call of Duty, Infinite Warfare",
"id": 2,
"description": "Fast paced shooter",
"by": "Infiniward",
"platform": ["XBOX", "PS4"],
"age_rating": "18",
"likes": 40,
"comments": [{
"user": "jim",
"message": "Awesome game",
"dateCreated": "2015-01-25",
"like": 7
}, {
"user": "Dave",
"message": "Too many n00bs ",
"dateCreated": "2016-05-00",
"like": 8
}, {
"user": "bob",
"message": "some comment",
"dateCreated": "2011-09-19",
"like": 2
}, {
"user": "richard",
"message": "some other comment",
"dateCreated": "2011-10-19",
"like": 1
}]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment