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 trialDavid Ryan
Courses Plus Student 14,981 PointsFor loop for arrays
What am I doing wrong?
var temperatures = [100,90,99,80,70,65,30,10];
for ( var i = 0; i < temeratures.length; i += 1; ) {
console.log(temperatures);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
2 Answers
Adam Beer
11,314 PointsI hope you like it better. That's nicer.
for ( var i = 0; i < temperatures.length; i += 1) {
console.log(temperatures[i]);
}
Adam Beer
11,314 PointsHi David! The solution is a bit more complicated. You misspelled the temperature in the loop. The loop decreases with -10. Hope this help.
for ( var temperatures = 100; temperatures > temperatures.length; temperatures -=10 ) {
console.log(temperatures);
}
Antti Lylander
9,686 PointsThis is wrong in so many ways. Guys, please test your suggestions yourselves.
Adam Beer
11,314 PointsIt is a very interesting. Please tell me, why does my code work?
David Ryan
Courses Plus Student 14,981 PointsAdam, sorry that can't be right as I did:
for ( var i = 0; i < temperatures.length; i += 1 ) {
console.log(temperatures[i]);
}
Adam Beer
11,314 PointsIt has several solutions :) Not problem. But I also wrote this :) Congratulations to the solution. Happy coding!
Antti Lylander
9,686 PointsAdam, it passes the challenge because the test suite is not perfect. This piece of code, however, does not do what it is supposed to do. In fact, it doesn't do anything at all. Try it in console.
Adam Beer
11,314 PointsYou're right. I hope my second solution is better for you :)
Antti Lylander
9,686 PointsAntti Lylander
9,686 Pointsyou are close. Just think how you access a value in an array and you know the solution!