parâmetro e javascript
/*
* `e` is often the name given to the parameter passed
* into the callback function of an event listener. `e`
* enables access to information about the event.
*/
element.addEventListener("eventname", function(e) {
console.log(e.type);
});
MattDESTROYER