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 trialAndrew Warrington
7,167 PointsI do not understand why this code came back as syntax error. Can anyone see where I went wrong?
var temperatures = [100,90,99,80,70,65,30,10];
for (i = 0; i < temperatures.length; i ++ 1;){ console.log(temperatures);
}
var temperatures = [100,90,99,80,70,65,30,10];
for (i = 0; i < temperatures.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
Chris Thomas
Front End Web Development Techdegree Graduate 34,909 PointsGotta fix two things in your loop to get it correct. First, your increment is off. It should just be i++ which means increment i by 1 every loop iteration. Secondly, you need to access each index of the array when you log it.
For Loop:
var temperatures = [100,90,99,80,70,65,30,10];
for (var i = 0; i < temperatures.length; i++) {
console.log(temperatures[i]);
}
While Loop:
var temperatures = [100,90,99,80,70,65,30,10];
var i = 0;
while (i < temperatures.length) {
console.log(temperatures[i]);
i++;
}
Michael Liendo
15,326 PointsIt's in your for-loop. It should be either i++ or i = i +1