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 trialeli d
Courses Plus Student 2,510 PointsDon't get what s wrong with my code
what I am missing ?
var temperatures = [100,90,99,80,70,65,30,10];
for (var i = 0 , i<temperatures.lenght, i+=10) {
console.log( temperatures[i] );
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer
Gloria Dwomoh
13,116 PointsYour code is...
var temperatures = [100,90,99,80,70,65,30,10];
for (var i = 0 , i<temperatures.lenght, i+=10) {
console.log( temperatures[i] );
}
- You must separate the elements in a for loop with semicolon ie. ; and not comma.
- lenght should be length
- You do not need to increment i by 10 as you won't print out all the elements from 100 - 10 that way. Your array has numbers from 100 - 10 and you want to go through all these numbers so you have to increase i by 1 each time so "i+=10" has to be "i+=1"
I hope this helps you sort it out.
eli d
Courses Plus Student 2,510 Pointseli d
Courses Plus Student 2,510 Pointssomething's wrong again
var temperatures = [100,90,99,80,70,65,30,10]; for (var i = 0; i<temperatures.length; i+=1) { console.log( temperatures ); }
Gloria Dwomoh
13,116 PointsGloria Dwomoh
13,116 PointsYou shouldn't have changed temperatures[i] to temperatures in the console.log()