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

Jaciel Albarran
Jaciel Albarran
3,496 Points

Why can't I run this loop?

I am not sure what the error is referring to. I ran the same code with variables "i" and "j" with the same result.

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

your loop code seem ok. try running it on a browser console it will work

Hi, What is your error? It is working for me in the browser console.

1 Answer

Yes, it works. Try to use https://jsbin.com/ you can see results on real time. S