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 trialJake Schmidt
1,536 PointsI have no idea what I'm doing wrong
Just keeps taking too long to run
var count = 0;
while (count < 26 ) {
var randNum = ("9");
document.write( randNum + ' ');
count =+ 1;
}
3 Answers
Kevin Korte
28,149 PointsYou made an infinite loop. It's your count =+ 1
that is keeping your loop for ending. I do not think that =+
is a valid operator, so my guess is that the browser is trying to figure out for you what you intended to do, and it's just assuming you meant count = 1
and so thus the while loop repeats because every time count gets evaluated it gets evaluated to 1. Change that statement to count += 1
and re-run it and it should work fine.
Hayes McCardell II
643 PointsI believe the issue is with your plus equals operator, it should be += and not =+.
Hope this helps.
Jake Schmidt
1,536 PointsThanks guys!