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.

Leo Effert
3,704 Pointsadding events to items in array with a loop. Why don't it work?
var co = document.querySelector("div");
var buttons = [];
var buttonNumber = 0;
for (i = 0; i < 9; i++) {
button = document.createElement("button");
buttons.push(button);
co.appendChild(button);
}
for (i = 0; i < buttons.length; i++) {
buttons[i].addEventListener("click", changeColor);
buttonNumber += 1;
}
function changeColor(i) {
buttons[buttonNumber].style.backgroundColor = "red";
}
Moderator edited: Markdown added so that code renders properly in the forums.
2 Answers

Leo Effert
3,704 PointsI solved it by putting let i = ii in each loop

Robert Anthony
19,952 PointsThe JavaScript is set to 'strict' and you need to put 'let' in each for loop:
for(let i = 0 ; i < 9 ; i++)

Leo Effert
3,704 PointsJust write "let " in the beginning of every condition? Tried that but it didn't work.