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!
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
Glaukio Llupo
9,552 PointsWhat is "e" in this example: "e.target"?
I need some help with this. I dont get what "e" is. This in line one, the "e", what exactly is it and how it works. I dont really need help on the ".target" part though. I thank you in advance.
form.addEventListener("submit", (e) => {
e.preventDefault();
const text = input.value;
const li = createLI(text)
ul.appendChild(li)
input.value = "";
});
3 Answers

varlevi
8,113 PointsFrom my understanding, e stands in for event. In fact often people declare 'e' as the word 'event' for clarity.

Alex Stine
2,333 PointsHere's some documentation on what you can access via DOM events.
https://www.w3schools.com/jsref/dom_obj_event.asp
Hope it helps.

Glaukio Llupo
9,552 PointsThanks everyone!!