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 trialKebafilwe Joseph Loiti
9,319 PointsLong Running Code.
I'm trying this challenge but its refusing and saying that my code took too long to run, plz help?
var count = 0;
while (count<26){
document.write('Hi');
}
1 Answer
KRIS NIKOLAISEN
54,971 PointsYou need to increment count
inside the loop . Otherwise your condition to run, count < 26
, is always true and you have an infinite loop. You can use count++
to increment by 1 each iteration.
Kebafilwe Joseph Loiti
9,319 PointsKebafilwe Joseph Loiti
9,319 PointsThank you, i figured it out after posting and i got it