Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Raeed Sabree
10,664 Pointscreate 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
var html = "";
for( var i = 4; i < 156; i +=1); {
console.log ()
}
1 Answer

Anjali Pasupathy
28,883 PointsYou'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
10,664 PointsRaeed Sabree
10,664 Pointsi think maybe im missing something could you write how the whole for should look?
Raeed Sabree
10,664 PointsRaeed Sabree
10,664 Pointsi think maybe im missing something could you write how the whole for should look?
Raeed Sabree
10,664 PointsRaeed Sabree
10,664 Pointsi think maybe im missing something could you write how the whole for should look?
Anjali Pasupathy
28,883 PointsAnjali Pasupathy
28,883 PointsAlright.