Events are user actions, usually from keyboard and mouse
onClick, onLoad, onBlur, onHover
document.getElementById("Button").addEventListener("click",() => {alert("Clicked")});
Handler for events in javaScript. Calls an action when an event occurs
type of event, function, and Boolean for asynchronous or not