reading-notes

Reading Journal

This topic is important because it allows us as coders to keep objects simplified, organized, and easy to understand. This aids in debugging as well as readability. The DOM is also important to understand because it allows us to interact with the webpage through various code commands. As we change code, the DOM makes the appropriate changes on the rendered site.

Reading

JavaScript Object Basics

1. How would you describe an object to a non-technical friend you grew up with?

2. What are some advantages to creating object literals?

3. How do objects differ from arrays?

4. Give an example for when you would need to use bracket notation to access an object’s property instead of dot notation.

5. Evaluate the code below. What does the term this refer to and what is the advantage to using this?

Introduction To The DOM

1. What is the DOM?

2. Briefly describe the relationship between the DOM and JavaScript.

Things I want to know more about.