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 trial

JavaScript JavaScript Loops, Arrays and Objects Simplify Repetitive Tasks with Loops Create a for Loop

Josh Hamilton
seal-mask
.a{fill-rule:evenodd;}techdegree
Josh Hamilton
Front End Web Development Techdegree Student 5,201 Points

Having trouble with this for loop challenge

Hey I'm trying to complete this code challenge and everything looks about right but it wont run. Any help is greatly appreciated.

script.js
for (var i = 4; i <= 156; i += 1;) {
    console.log(i);
}

1 Answer

You have a semicolon after i += 1. Remove the semicolon and you're good to go.

You will soon find out that the semicolon is the hide and seek champion in programming. Lol

for (var i = 4; i <= 156; i += 1) {
    console.log(i);
}

thank you, this actually fixed my problem as well!