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 trialmike o'shea
9,917 Pointsstuck in refractor code question.
only one console.log should appear in answer. whichever loop I use I get the same retort.
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);
var number = 2;
while(number <= 24){
console.log(number);
number +=2;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer
Chris Jardine
13,299 PointsHi Mike
Just get rid of the console.log(2)... to... console.log(24). The task asked you to rewrite the code, so they are not needed and your solution should pass.
mike o'shea
9,917 Pointsmike o'shea
9,917 Pointsthanks Chris,trick question;