What is a DOM tree?
A representation of HTML as a tree structure of tags
Why is it good practice to assign the return value of a DOM query to a variable?
DOM querying takes an eternity, so search once and store it so that it is reusable and accessable
What console method allows you to inspect the properties of a DOM element object?
console.dir()
Why would a
tag need to be placed at the bottom of the HTML content?
The browser needs to run the HTML document first to create the DOM