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

Andrew Stokes
seal-mask
.a{fill-rule:evenodd;}techdegree
Andrew Stokes
Full Stack JavaScript Techdegree Student 1,723 Points

I have been stuck on this for a while now, some assistance would be greatly appreciated :)

Would I need to use math function to display all even numbers to the console? I tried Math.iseven() after some google searching but still nothing. Any advice?

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

3 Answers

Frederic Ronaldi
Frederic Ronaldi
13,732 Points

Hi, i think to display even numbers, you could start with the i value of 0 since 0 is even number too, and increment the i by 2. So the script.js should look like this

for ( i = 0; i <= 24; i += 2) {
console.log(i);
}
Jeff Wilton
Jeff Wilton
16,646 Points

You're thinking too hard :) Just increment your i value by 2 instead of 1.

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