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 Refactor Using a Loop

what am I doing wrong in this

help

script.js
for (var i=2; i<24 ; i+=2)
{
console.log(11);
}
index.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>

1 Answer

Grace Kelly
Grace Kelly
33,990 Points

Hi Devanshi, just a couple of minor issues, first your code outputs 11 numbers when the challenge requires 12, we can fix this by adding an equals "=" sign after the less than "<" to make the loop run one more time. Secondly, each time your loop runs it outputs the number 11 which is not what we want. We want to output the variable i during each loop so we see 2,4,6,8,10 etc. Making these small changes we get the following:

for (var i=2; i<=24 ; i+=2) //use <= 
{
console.log(i); //output the variable i
}

This should now work, hope that helps!!