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 trialJames Draper
Full Stack JavaScript Techdegree Student 2,323 PointsMy 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
for( var i = 4 ; i !== 157 ; i+=1 ){
console.log(`${i}`);
}
3 Answers
Clayton Perszyk
Treehouse Moderator 48,850 PointsYou're "converting" i to a string. The test is expecting a number.
Victor Mercier
14,667 PointsHi 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!
James Draper
Full Stack JavaScript Techdegree Student 2,323 PointsI feel very stupid - Silly mistake.
Thank you for your quick reply, much appreciated.
Victor Mercier
14,667 PointsDo not forget to mark as best answer!