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 trialCaitlin S
2,882 PointsItems 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
16,529 PointsYou have a typo in for loops
1 < myList.length;
instead of
i < myList.length;
Emre Karakuz
9,162 Pointscheck your for loops :)
you have written
1 < myList.length
should be
i < myList.length
Caitlin S
2,882 PointsCaitlin S
2,882 PointsThank you. Maybe an eyesight problem... ;)