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 trialjbiscornet
22,547 PointsCan someone help me on this challenge?
It's an easy challenge if it were sequential, but the even numbers throws me off. I can't think of how I would simplify this.
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);
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer
Shawn Rieger
9,916 PointsNo that is the best way (from your comment). Sometimes you need to walk away from your project and take your mind off it, then when you come back you can get a fresh look at things!
for (var i = 2; i <= 24; i + 2) {
console.log(i);
}
jbiscornet
22,547 Pointsjbiscornet
22,547 PointsNevermind... I just figured it out. I would increase the counter by 2 every time instead of 1. sometimes the simple things seem so hard. If anyone has a better way or a different way I would love to hear it also. Thanks.