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

Where to start on this challenge?

Hi, So you can see for yourself how this challenge is layed out, but I just can't seem to grasp it. I reviewed the video, but that didn't really help. Does anyone have a clue to get me going? Thank you!

script.js
console.log(2);
console.log(4);
console.log(6);
console.log(8);
console.log(10);
console.log(12);
console.log(14);
console.log(16);
console.log(18);
console.log(20);
console.log(22);
console.log(24);
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

This is a little tricky. But I would suggest if using a for loop to initialize the var i at 2 so you start at two, then iterate through the loop adding 2 then consoling the i variable.

what we want is all even numbers how to go about doing that is to start a the count at 2, then iterate through the loop not by one but by 2. that way we get all the even numbers.