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

What 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
varlevi
8,113 Points

From my understanding, e stands in for event. In fact often people declare 'e' as the word 'event' for clarity.

Here's some documentation on what you can access via DOM events.

https://www.w3schools.com/jsref/dom_obj_event.asp

Hope it helps.

Thanks everyone!!