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 trialBryce Edwards
1,586 PointsStill having issues.. parse error? Is there a parseInt missing?
hmmm.
for (var i = 1, i <= 156, i++) {
console.log(i);
}
1 Answer
Joe Beltramo
Courses Plus Student 22,191 PointsYou need to end your for
loop statements with a semicolon instead of a comma. Also the challenge is asking for you to log 4 through 156, so you might want to bump up your initial value of the i
variable :]