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

My code works fine and yet it says I'm wrong?

My code works fine locally, I see no reason why I shouldn't have gotten this code test correct, thanks in advance.

James Draper

script.js
for( var i = 4 ; i !== 157 ; i+=1 ){
  console.log(`${i}`);



}

3 Answers

Clayton Perszyk
MOD
Clayton Perszyk
Treehouse Moderator 48,723 Points

You're "converting" i to a string. The test is expecting a number.

Hi James, your code is correct but the question ask you to print all NUMBERS. So what you are doing is correct but just doing without string interpolation. So the following would be correct:

console.log(i);

If that helped, you can mark the answer as best answer to indicate other students your issue is resolved!

I feel very stupid - Silly mistake.

Thank you for your quick reply, much appreciated.

Do not forget to mark as best answer!