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 trialSumalee Juntra
8,669 PointsHow to fix this?
The code below logs all of the even numbers from 2 to 24 to the JavaScript console. However, there's a lot of redundant code here. Re-write this using a loop.
var counter = 1;
for (counter = 1; counter <= 12; counter * 2) {
console.log(counter);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
3 Answers
Jamie Reardon
Treehouse Project ReviewerDon't overthink it. You can simplify this and reduce the code like so:
- You don't need to create a variable outside of the loop, you can use the index variable defined in the loop that you should create
for (var i = 2
) in this case. - The initial value of the variable should be 2 since you want to print out from number 2, not 1.
- Your condition's value should be 24, not 12 since you want the loop to end once the value of the variable is 24.
- You don't need to multiply the number, you need to use the
+=
operator to add the value on the right to the variable.
for (var i = 2; i <= 24; i += 2) {
console.log(i);
}
Jonathan Grieve
Treehouse Moderator 91,253 PointsFor your exit experssion, which is the third item in the for
loop try using counter += 2
in your rather than counter * 2
.
Sumalee Juntra
8,669 PointsThank you so much.
Jamie Reardon
Treehouse Project ReviewerYou are very welcome! Have fun!