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 trialRashaun Ewing
15,711 PointsNot sure what I'm doing wrong with this code...
Creating a "for" loop from 4 - 156
for ( var num = 4, num <= 156, num++ ){
console.log(num);
}
2 Answers
rydavim
18,814 PointsInside the for loop setup you need to use ; semi-colons instead of , commas. Just a syntax error thing - your thinking is correct. :)
Andrew McCormick
17,730 Pointsyou need semicolons not commas in your For statement
Rashaun Ewing
15,711 PointsThanks!
Go Buckeyes!
Rashaun Ewing
15,711 PointsRashaun Ewing
15,711 PointsThank you, another quick question, why is there no semi-colon after 'num ++'?
rydavim
18,814 Pointsrydavim
18,814 PointsIn this case, think of the semi-colons as separators to break up the expressions. Because you're ending the expression block with ')', you've already flagged that section as complete to javascript.