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 trialShahe Alam
1,500 Pointsi have write the answer but its not working it's say try again
i have write the answer but not working
for (var i = 2; i <= 24; i+2) { console.log(i); }
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);
for (var i = 2; i <= 24; i+2) {
console.log(i);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer
Alex Koumparos
Python Development Techdegree Student 36,887 PointsHi Shahe,
You have two issues with your code. The first is that the challenge wants you to replace redundant code. Right now, you are adding redundant code, since your loop does the same thing as all the hard-coded console.log
s. To solve this issue, remove all of the hard-coded console.log
s.
The second issue is that you have an infinite loop. Look closely at your loop definition:
for (var i = 2; i <= 24; i+2) {
On each iteration of the loop:
- you create a new temporary variable called
i
, which you initialise to2
; - you check if
i
is less than or equal to24
; - you calculate the value of
i
+ 2.
Since you never modify the value of i
, it will never reach the terminating condition.
Hope that points you in the right direction.
Cheers
Alex