Created
November 25, 2019 15:56
-
-
Save sandrabosk/2c9a0d4859e3408287055640643b0dd6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const product = { | |
name: "AmazonBasics Apple Certified Lightning to USB Cable", | |
price: 7.99, | |
manufacter: "Amazon", | |
reviews: | |
[ | |
{ user: "Pavel Nedved", | |
comments: "It was really usefull, strongly recommended", | |
rate: 4 | |
}, | |
{ user: "Alvaro Trezeguet", | |
comments: "It lasted 2 days", | |
rate: 1 | |
}, | |
{ user: "David Recoba", | |
comments: "Awesome", | |
rate: 5 | |
}, | |
{ user: "Jose Romero", | |
comments: "Good value for money", | |
rate: 4 | |
}, | |
{ user: "Antonio Cano", | |
comments: "It broked really fast", | |
rate: 2 | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment