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 trialAndrew Stokes
Full Stack JavaScript Techdegree Student 1,723 PointsI 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?
for ( i = 2; i <= 24; i += 1) {
console.log(i);
}
<!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
13,732 PointsHi, 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
16,646 PointsYou'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)
}
Andrew Stokes
Full Stack JavaScript Techdegree Student 1,723 PointsWow. Thank you both very much. I was thinking way too hard!