Thoughts & Musings

Selecting DOM Elements
There are several ways to grab DOM elements using the document object. We can use the id… This will grab the DOM element that has

Document Object
The document is…well…the document. It falls right under the window object. You can get the body, forms, create elements, get elements and more… https://developer.mozilla.org/en-US/docs/Web/API/Document Happy

Location Object
The location object gives us information on the url such as the href. Check out the properties and methods on MDN… https://developer.mozilla.org/en-US/docs/Web/API/Location The way we

Window Object
The window object is the global object in JavaScript. We can access this object from anywhere in JavaScript. You have used the window object without

Importing a Module
To use a module that has the “export” keyword, we have to import it into our code. To do this we use the “import” keyword…