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 trial

JavaScript JavaScript and the DOM (Retiring) Responding to User Interaction The Event Object

Why is the 'event' parameter necessary in the function?

Why is the 'event' argument necessary in the function?

document.addEventListener('click',function(){ console.log(event.target) })

the code works without it

2 Answers

The event object is optional, but it give addition information about the event. For example, it probably contains which element exactly what clicked, where the mouse was when it clicked, etc. Guil will show usages of event in the next couple videos. :smiley:

Happy c0d1ng! :grin:

:dizzy: ~Alex :dizzy:

Thanks