Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJeffrey Holcomb
Full Stack JavaScript Techdegree Graduate 17,506 PointsI do not understand how the 'event' argument we pass into the event handler function ends up being the event object.
Perhaps there is something about the nature of the addEventListener() method that I do not understand, but how/why does the argument named 'event' actually target the event object? I know it is named 'event' strictly for naming conventions, and that if we named it something else, it would have the same behavior. Does the callback function take an event object by default as an argument?
1 Answer
Peter Vann
36,427 PointsThese might help:
https://stackoverflow.com/questions/17516960/the-e-parameter-in-addeventlistener (Simplest Explanation)
https://teamtreehouse.com/community/in-the-event-listener-what-is-the-e-parameter
I hope that helps.
Stay safe and happy coding!
Jeffrey Holcomb
Full Stack JavaScript Techdegree Graduate 17,506 PointsJeffrey Holcomb
Full Stack JavaScript Techdegree Graduate 17,506 PointsThank you for the response. It looks like the event object is passed as the argument by default.