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

What am I doing wrong?

My workspace didn't work for the video tutorial for this lesson either, so I'm kinda lost.

script.js
var log = " ";

for  (var i = 4; i >= 4 || i <= 156; i += 1 ) {
    log += i;
}

console.log(log);

2 Answers

Stuart Wright
Stuart Wright
41,118 Points

A couple of things:

  • You only need the <= 156 condition. You're starting at 4 and going upwards, so i will always be greater than 4. By including this in an or statement means that your loop will run forever.
  • The challenge just wants you to print the numbers one at a time. You don't need to add anything.
for  (var i = 4; i <= 156; i += 1 ) {
    console.log(i);
}

Thank you!