Event Delegation in JavaScript

https://www.youtube.com/watch?v=buVEB6TI3VU

You don't always have to write event listeners for everything. Event delegation lets you add one listener to the parent element and then use the information from the created event object to tell which child element was the target of the event. Here's how it's done.