Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Tyler McDonald
Full Stack JavaScript Techdegree Graduate 16,676 PointsDeclaring constants in the edit/remove buttons event handler
I am wondering if there would be any potential reason why I would not want to declare the variables in the event handler outside of both if statements, rather than within the parent if statement like Guil does in the video. This is how I did it:
ul.addEventListener('click', (e) => {
const button = e.target;
const li = button.parentNode;
const ul = li.parentNode;
if (button.tagName === 'BUTTON') {
if (button.textContent === 'remove') {
ul.removeChild(li);
} else if (button.textContent === 'edit') {
li.type = 'input';
}
}
Thanks for the advice!
1 Answer

Steven Parker
221,900 PointsThere's no functional difference; but when placed outside the "if", the variables will always be created even if the event occurs for something other than a button.
When located as shown on the video, the assignments will be efficiently skipped in all cases where the event is for some other element. And as a minor code readability issue, it seems a bit awkward to assign the element to a variable named "button" when it is not a button.