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 trialMartin Bornman
Courses Plus Student 12,662 Pointsfor loop
Seems the loops is my downfall.What is wrong with this code?
i = 4;
for ( i = 4; i < 156; i +=) {
console.log(i);
}
2 Answers
Maximillian Fox
Courses Plus Student 9,236 PointsHey there,
Your variable i is missing the var keyword. You need to use
var i = 4;
to declare it.
Also at the end of your for loop statements, I can see
i +=
but there is no number specifying how much the i variable should increment. So you need to use
i += 1
Also, you can declare your i variable inside the for loop directly, so putting the above examples together should give you
for ( var i = 4; i < 156; i += 1 ){
console.log(i);
}
Give it a try and remember to always check your console for errors :)
Gianmarco Mazzoran
22,076 PointsHi, you forgot to add an increment number:
i = 4;
for ( i = 4; i < 156; i += 1) {
console.log(i);
}
Martin Bornman
Courses Plus Student 12,662 PointsThanks Gianmarco!!!
Gianmarco Mazzoran
22,076 PointsGianmarco Mazzoran
22,076 PointsOps! didn't notice the var keyword! Good job!
Martin Bornman
Courses Plus Student 12,662 PointsMartin Bornman
Courses Plus Student 12,662 PointsThanks Maximillian that really helps !!!