dom-manipulation Flashcards
What is the className property of element objects?
Class attribute
How do you update the CSS class attribute of an element using JavaScript?
Use the className method
What is the textContent property of element objects?
It lets us get and set textcontent
How do you update the text within an element using JavaScript?
.textContent method
Is the event parameter of an event listener callback always useful?
No
Would this assignment be simpler or more complicated if we didn’t use a variable to keep track of the number of clicks?
It would be more complicated
Why is storing information about a program in variables better than only storing it in the DOM?
You can access it without having to call the dom