reading-notes

Code-Fellows reading notes.

View the Project on GitHub bkasprzyk19/reading-notes

<==Back

Objects

Litteral Notation


var hotel = {
 name: 'Quay',
 rooms: 40,
 booked: 25,

checkAvvailability: function() { return this.rooms - this.booked;}


}

Good Instructions for Literal Notation on page 104

Dom Tree

4 nodes

Nodelists & DOM QUERIES

Check out looping through a nodelist on page 206