reading-notes

Reading Notes

View the Project on GitHub simon-panek/reading-notes

Code 201: Class 07 - HTML Tables, JS Constructor Functions


Read: Domain Modeling Article

Domain Modeling conceptual model that describes the various entities, attributes, behaviors, and constraints

Link to article

Read: HTML Text pp 126-145

Tables

Read: JS Text pp 106-144

Constructor Notation


var hotel = new Object();

hotel.nam = 'Quay';
hotel.rooms = 40;
hotel.booked = 25;
hotel.checkAvailability = function () {
  return this.rooms - this.booked;
};

Browser Object Model - many methods shown on pg 124

Document Object Model (The DOM)

The Document Object

String Objects

Methods

pp 137 List of date() methods


Return to reading-notes Deployed Site

Return to reading-notes Mark Down