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.

Roman Brandt
806 PointsES6
Why do you use old way for loop? If you use new ES6 syntax can you write all code in ES6! Array.from or spread with HTML Collection! And what is it window.setTimeout? )))
3 Answers

Steven Parker
221,293 PointsFor the most part, the new syntax adds to the total toolkit available to the programmer, and does not replace what's already there. This is probably most true of loops, which continue to be some of the most-used language features.
Also, you'll often find that when the instruction is focusing on a specific technique, the examples will be implemented with the intention of clarity taking precedence over efficiency. You can, of course, apply your full skill set when creating your own programs to be as efficient as possible.
And finally, window.setTimeout sets a timer which executes a function or specified piece of code once after the timer expires. For more details see the MDN page.
Happy coding! And for some holiday-season fun and extra practice, give Advent of Code a try!

thomas shellberg
11,594 PointsThanks for the response, Steven, and thanks for that snippet! Much nicer. :)

thomas shellberg
11,594 PointsI used the 'forEach' method instead of an oldschool for loop. It's easier for me and you can practice passing functions as arguments. In this example I highlight the currently "focused" input elements and revert the highlighting when the element is not focused(you hit tab to a different input or click out of it).
let allInputs = document.querySelectorAll('input');
allInputs.forEach( input => {
input.addEventListener('focus', () => {
input.style.borderColor = "lightgreen";
});
input.addEventListener('blur', () => {
input.style.borderColor = "lightgray";
});
});

Steven Parker
221,293 PointsBe aware that "forEach" is not a suitable replacement for a loop in all cases. One notable difference is that is has no mechanism for early termination (like "break" in a loop).
And if you find you are doing any repeating process to set up multiple event listeners, it's likely that a much better approach to the issue is with a single delegated handler:
// handle ALL inputs
document.addEventListener('focus', e => {
e.target.style.borderColor = "lightgreen";
}, true);
document.addEventListener('blur', e => {
e.target.style.borderColor = "lightgray";
}, true);
Roman Brandt
806 PointsRoman Brandt
806 PointsOk but setTimeout already knows where he came from )) why we use window object? If I write a part like that and a part in a new style, it confuses a little. I'm a junior web developer and I have a lot of questions )))
Steven Parker
221,293 PointsSteven Parker
221,293 PointsI guess I misunderstood your question. You meant why is it called that, and it is because it is the full name for it. But you can leave off the "window." part since it is also a reference to the global object.