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 Create a while Loop

My While loop seems to take too long to run in the Code Challenge, what am I doing wrong, it asks for 26 counts

It asks me to create a while loop that prints 26 times. However, when I give it a condition of while count is less than 26 or even a 27 it says it takes to long to run.

script.js
 var count = 0;

while (count < 26) {
  document.write("a while loop");
}

1 Answer

Your count variable is set to 0 and stays zero. You need to add into your program something like count++. That way each time it runs, you add one to the variable and it will stop once it reaches less than 26.

var count = 0;

while (count < 26) {
  document.write("a while loop");
  count++;
}

Thanks cameron. I figured as much, I knew something was missing, I just could not remember what that was.

I'm glad you figured it out! :)