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

Evan Hendsbee
Evan Hendsbee
8,081 Points

Easy Loop challenge.

I know this is supposed to be easy but I can't figure out why it isn't looping and logging more than one number. Please help.

script.js
var number = "";

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

2 Answers

Matthew Long
Matthew Long
28,407 Points

You've almost got it! The first line of your loop is nearly setup correct. The i + 2 part needs to be i += 2 so that i saves its value.

The body of your loop is where you want to log i to the console each time it is looped over. So you don't need the break or the other line inside the body, and move console.log(i) in there. There doesn't need to be anything outside the loop to complete this challenge.

for (var i = 2; i <= 24; i += 2) {
  console.log(i)
}
Evan Hendsbee
Evan Hendsbee
8,081 Points

Thanks so much Matt. I don't know why I didn't think to move the console log into the loop. Appreciate it.