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 trial

JavaScript JavaScript Loops, Arrays and Objects Simplify Repetitive Tasks with Loops Create a while Loop

I 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

script.js
var count = 0;

while (count <= 26){
  document.write(count)
}

Hei Abdullahi,

You will have to increment the counter variable at the end of the while loop like this:

count+=1 or count ++

I hope ask something please I hope you don't mind wat is function of that code count+=1 or count ++

2 Answers

Hi 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;
}