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 JavaScript and the DOM (Retiring) Getting a Handle on the DOM Selecting Elements with the Same Class Name

Items not changing to red.

All the items are staying purple and I am getting an error in the console : "Uncaught TypeError: Cannot read property 'style' of undefined at app.js:4"

I assume I am missing something obvious, but I just can't see it!

Link to Workspace: https://w.trhou.se/mvmjq81cyt

2 Answers

Andrey Misikhin
Andrey Misikhin
16,529 Points

You have a typo in for loops

1 < myList.length;

instead of

i < myList.length;

Thank you. Maybe an eyesight problem... ;)

Emre Karakuz
Emre Karakuz
9,162 Points

check your for loops :)

you have written

1 < myList.length

should be

i < myList.length