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

Raeed Sabree
Raeed Sabree
10,664 Points

create a for loop that logs the number 4 to 156 to the console

to log the value to the console use the console.log method

script.js
var html = "";

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

1 Answer

Anjali Pasupathy
Anjali Pasupathy
28,883 Points

You're nearly there! In the for loop, you wrote "i < 156". This means that when i hits 156, it makes the condition false, which means it breaks out of the loop before you can log 156. Because of this, you need to replace that code with "i < 157" or "1 <= 156".

You also need to get rid of the semi-colon after the closing parentheses, remove the space between "console.log" and "()", put a semi-colon after that line, and put i inside the log.

// CHANGE i < 156 SO THAT THE CONDITION INCLUDES 156
// REMOVE SEMI-COLON AFTER CLOSE PARENTHESES
for( var i = 4; i < 156; i +=1); {
// REMOVE SPACE AFTER console.log
// PUT SEMI-COLON AT END OF console.log()
// PUT i INSIDE PARENTHESES
console.log ()
}

I hope this helps!

Raeed Sabree
Raeed Sabree
10,664 Points

i think maybe im missing something could you write how the whole for should look?

Raeed Sabree
Raeed Sabree
10,664 Points

i think maybe im missing something could you write how the whole for should look?

Raeed Sabree
Raeed Sabree
10,664 Points

i think maybe im missing something could you write how the whole for should look?

Anjali Pasupathy
Anjali Pasupathy
28,883 Points

Alright.

// CHANGE i < 156 SO THAT THE CONDITION INCLUDES 156
// REMOVE SEMI-COLON AFTER CLOSE PARENTHESES
for( var i = 4; i < 157; i +=1) { // could also change condition to i <= 156
// REMOVE SPACE AFTER console.log
// PUT SEMI-COLON AT END OF console.log()
// PUT i INSIDE PARENTHESES
console.log(i);
}