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

I do not understand the concept of "you logged 1 number but you need 12" can some please explain this to me?

Am i setting up the loop correctly to get all even number up to 24?

script.js
var html = '';
var even

for (var i = even; i < 25; i += 2) {
  html += '<div>' + i + '</div>';
}
console.log(html);
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

The console.log will need to be in the loop because it is what you want to repeat over and over. For this challenge, you don't actually need to declare any other variables. 'i' does need to start at 2 though. Also, in this challenge, you don't need to add html to the page. just console.log. so you can remove those new div tags entirely.

for ( var i = 2; i < 25; i += 2) { 
  console.log(i)
}

thank you so much that helped me a lot.