As far as I know, (e) calls event handlers, but I’m unsure about the terminology. What types of event handlers should be mentioned earlier to use this attribute?
e is the parameter of the callback function, it doesn’t call event handlers
it’s short for event, also it’s a convention, it could be actually called anything
the function when called is passed the event object as argument
if you don’t use a parameter name, there will not be a variable to hold the value passed in, and it will be accessible only through the arguments object
You should test this out yourself, it’s a good learning experience.
But basically, if you don’t pass the e variable argument, then you cannot use it. But I’m just repeating @ILM comment. Testing it yourself through code is a better way to learn about this.
There’s also many explanations and examples already: