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 Loops, Arrays and Objects Tracking Multiple Items with Arrays Iterating through an Array

For loop for arrays

What am I doing wrong?

script.js
var temperatures = [100,90,99,80,70,65,30,10];

for ( var i = 0; i < temeratures.length; i += 1; ) {
  console.log(temperatures);
}
index.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>

you are close. Just think how you access a value in an array and you know the solution!

2 Answers

I hope you like it better. That's nicer.

for ( var i = 0; i < temperatures.length; i += 1) {
    console.log(temperatures[i]);
}

Hi 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);
}

This is wrong in so many ways. Guys, please test your suggestions yourselves.

It is a very interesting. Please tell me, why does my code work?

Adam, sorry that can't be right as I did:

for ( var i = 0; i < temperatures.length; i += 1 ) {
  console.log(temperatures[i]);
}

It has several solutions :) Not problem. But I also wrote this :) Congratulations to the solution. Happy coding!

Adam, 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.

You're right. I hope my second solution is better for you :)