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 trialNathan 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! :)