View on GitHub

reading-notes

Learning Notes Repo for Code Fellows

Problem Domain, Objects, and the DOM

Objects

An object is a grouped variables and functions that are used to create a model to represent something in the real world. An object has property and method. We can access an object using dot notation.

Document Object Model

The Document Object Model defines how browsers should create a model of an HTML page and how JavaScript can access and update the contents of a web page while it is in the browser window.

<==Back