Skip to content

Instantly share code, notes, and snippets.

View rayie's full-sized avatar

Ray Ie rayie

View GitHub Profile
@rayie
rayie / bookprices.js
Created November 21, 2014 07:53
Assignment: Bookprices 1
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
},