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 trialPitrov Secondary
Courses Plus Student 323 Pointsthis doesn't work here but it works on notepad
I have to make console.log from 2 to 24 with loops It says it doesnt work but it works on notepad
var i = 1;
while (i<24) {
i = 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>
1 Answer
Steven Parker
231,248 PointsThe instructions say to log "all of the even numbers from 2 to 24". So you'll want to start with 0, and when you increment the value, be sure to increase it so it skips the odd numbers and only returns the even numbers.
But how do you get "notepad" to run JavaScript code?
Pitrov Secondary
Courses Plus Student 323 PointsPitrov Secondary
Courses Plus Student 323 PointsHuh, Doesnt notepad work? Oops, I thought that sublime text, atom etc is just some cool notepads ( like notepad++) I tested it on sublime Text. How do I do that? I am a begginer. Thanks
Steven Parker
231,248 PointsSteven Parker
231,248 PointsI haven't tried it myself, but I understand that Sublime will execute JavaScript. I just thought you were referring to the app named "notepad" that comes with Windows, which is a very plain text editor.