Does the document.createElement() method insert a new element into the page?
it does not
How do you add an element as a child to another element?
append.child method
What do you pass as the arguments to the element.setAttribute() method?
what every attribute and whatever value you want
What steps do you need to take in order to insert a new element into the page?
create it and then create
What is the textContent property of an element object for?
you can just get it or even set it
Name two ways to set the class attribute of a DOM element.
class attribute or classname
What are two advantages of defining a function to do create something (like the work of creating a DOM tree)?
reusability