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.

Abdullahi 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 ++