dom-manipulation Flashcards
What is the className property of element objects?
The className property sets or returns the class name of an element (the value of an element’s class attribute).
How do you update the CSS class attribute of an element using JavaScript?
-re-assign the class name using the className property
What is the textContent property of element objects?
The textContent property allows you to collect or update just the text that is in the containing element (and its children).
How do you update the text within an element using JavaScript?
-re-assign the text using the textContent
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?
-more complicated
Why is storing information about a program in variables better than only storing it in the DOM?
-it is faster