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.

Chadrak Fertil
2,221 PointsLoops
Need help understanding how to solve this.
for (i = 4; i < 160; i++) {
console.log(i);
}
1 Answer

rydavim
18,780 PointsLooks like you've got the right idea, you just need to think about how long you want your loop to run.
Create a
for
loop that logs the numbers 4 to 156 to the console. To log a value to the console use theconsole.log( )
method.
Your code works, but you only want to log numbers up through 156. How might you change your loop to stop earlier?
If you're still having trouble, let me know and we can walk through what's happening. Good luck, and happy coding!
Lazarus Odhiambo
4,423 PointsLazarus Odhiambo
4,423 PointsWhat is the issue you're facing?