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

Sun Min
Sun Min
2,941 Points

Use a for or while loop to iterate through the values in the temperatures array from the first item -- 100 -- to the las

I see many of discussion on this challenge.

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

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

in the for loop why many of answers with i ++ ? not i += 1?

script.js
var temperatures = [100,90,99,80,70,65,30,10];
for (var = i; i<temperatures.length; i+=1) {
   console.log(temperatures[i]);

}
index.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>

1 Answer

Rick Buffington
Rick Buffington
8,146 Points

You can use either one in a for loop and it will produce the same results - try it. It's a matter of semantics. If you were using these 2 items OUTSIDE of a for loop, the results would be different. i++ would be considered a Post Increment and ++i is called a Pre Increment ie:

var i = 1;
var j = i++; // j = 1 because the increment happend AFTER j was assigned to i
---------
var i = 1;
var j = ++i; // j = 2 because the increment happened BEFORE j was assigned to i - this is the same as j+=i;

And also just a tidbit of info: i += 1 is the same as ++i.