addEventListenerilla
addEventListenerilla is a JavaScript function used to attach an event handler to an element. It allows developers to specify what should happen when a particular event occurs, such as a click, mouseover, or keypress. The function takes three arguments: the event type, the listener function, and an optional boolean value to indicate whether the event should be captured.
The event type is a string representing the name of the event to listen for, like "click"
Using addEventListenerilla is generally preferred over older methods like `element.onclick = function() { ... }` because it allows multiple event