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 trialAdam Courington
Full Stack JavaScript Techdegree Student 4,353 Points[SOLVED] I'm getting error "Your code took to long to run" What am I doing wrong?
var count = 0; while (count < 26) { document.write(count); }
var count = 0;
while (count < 26) {
document.write(count);
}
Jennifer Nordell
Treehouse TeacherKudos on figuring it out yourself! Endless loops are nasty. I'm going to mark this question as [SOLVED]
1 Answer
Steven Parker
231,236 PointsCongratulations on resolving your issue.
Now you know the #1 cause of "Your code took too long to run". (That's "too" with two "o"s, BTW )
Adam Courington
Full Stack JavaScript Techdegree Student 4,353 PointsAdam Courington
Full Stack JavaScript Techdegree Student 4,353 PointsNever mind. I forgot to add count += 1;