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
var bookprices = { | |
// each book in the series costs $14 each, there are 7 books in the series | |
"HarryPotter" : { | |
price: 14, // the price of one book | |
books: 7 // the number of books in the series | |
}, | |
"CaptainUnderpants": { | |
price: 5, | |
books: 12 | |
}, |
NewerOlder