What is theevent.target?
Object that the event is working on
Why is it possible to listen for events on one element that actually happen its descendent elements?
The bubble event
What DOM element property tells you what type of element it is?
The tagName property
What does theelement.closest()method take as its argument and what does it return?
It takes in a css selector as an argument and returns the closest parent
How can you remove an element from the DOM?
remove( ) method
If you wanted to insert new clickable DOM elements into the page using JavaScript, how could you avoid adding an event listener to every new element individually?
Add the event listener to parent