Code-Fellows reading notes.
var hotel = {
name: 'Quay',
rooms: 40,
booked: 25,
checkAvvailability: function() { return this.rooms - this.booked;}
}
Good Instructions for Literal Notation on page 104
Check out looping through a nodelist on page 206