Reading Notes for Codefellows
View the Project on GitHub kylecohen14/reading-notes
var hotel = { name:'hotelname', rooms: 40, booked: 25, checlAvailability: function() { return this.rooms - this.booked; } };