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 trial

JavaScript JavaScript Loops, Arrays and Objects Simplify Repetitive Tasks with Loops Refactor Using a Loop

this 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

script.js
var i = 1;
while (i<24) {
   i =  i +1;
  console.log( i);
}
index.html
<!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
Steven Parker
229,732 Points

The 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?

Huh, 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
Steven Parker
229,732 Points

I 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.