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 trialAbdullahi Abdinasir Ali
9,520 PointsI set the while loop and use document.write method but still code took too long to ran
Am not understanding this quiz it seems it asking something I am not getting ryt
var count = 0;
while (count <= 26){
document.write(count)
}
Abdullahi Abdinasir Ali
9,520 PointsI hope ask something please I hope you don't mind wat is function of that code count+=1 or count ++
2 Answers
Anastasia Boychenyuk
1,955 PointsHi Abdullahi! Your code takes too long to run because you have created an infinite loop. "count" always is going to be less than 26 because nothing changes inside the loop. You need to add count +=1; or count++ (which is the same). So after first run var count = 1, after second run var count =2 and so on. Until it reaches 26. Hope this helps.
var count = 0;
while (count < 26) {
document.write(count);
count+=1;
}
Daniel Languiller
Full Stack JavaScript Techdegree Graduate 33,396 PointsShould look like this,
var count = 0;
while (count < 26){
document.write(count);
count ++;
}
tobiastrinkler
Full Stack JavaScript Techdegree Student 16,538 Pointstobiastrinkler
Full Stack JavaScript Techdegree Student 16,538 PointsHei Abdullahi,
You will have to increment the counter variable at the end of the while loop like this:
count+=1 or count ++