Code-201-reading-notes


Project maintained by mohsmadi Hosted on GitHub Pages — Theme by mattgraham

PROBLEM DOMAIN

What is the hardest thing about writing code?

There are many common answers to this question:

But the hardest thing about programming is learning the problem domain.**

By creating a familiar problem domain, I found that both the tasks of me teaching a new technology and the viewer learning that technology were much easier, because it is very difficult to learn more than one thing at once.

JavaScript

Chapter 03

Object Literals

Objects group together a set of variables and functions to create a model of a something you would recognize from the real world. In an object,variables and functions take on new names

Chapter 05

Document Object Model

The Document Object Model (DOM) specifies 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.