Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Nathan Gonzales
2,641 PointsMy 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.
var count = 0;
while (count < 26) {
document.write("a while loop");
}
1 Answer
cameroneckelberry2
8,701 PointsYour 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.
cameroneckelberry2
8,701 Pointscameroneckelberry2
8,701 PointsNathan Gonzales
2,641 PointsNathan Gonzales
2,641 PointsThanks cameron. I figured as much, I knew something was missing, I just could not remember what that was.
cameroneckelberry2
8,701 Pointscameroneckelberry2
8,701 PointsI'm glad you figured it out! :)