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 trialMcKay Thayn
Courses Plus Student 6,064 PointsCan't get document.write to run
function randomNumber(upper) { return Math.floor(Math.random() * upper ) + 1; }
var count = 0; while (count > 26) { var random = randomNumber(10); document.write(random); count += 1;
}
The document.write(random); will only run when it is outside the curly brackets of the 'while' function. Just wondering why it's doing that. Thanks
function randomNumber(upper) {
return Math.floor(Math.random() * upper ) + 1;
}
var count = 0;
while (count > 26) {
var random = randomNumber(10);
document.write(random);
count += 1;
}
1 Answer
KRIS NIKOLAISEN
54,971 PointsYou have count = 0 and a condition to run of count > 26 therefore the while loop never runs. It should be count < 26.
McKay Thayn
Courses Plus Student 6,064 PointsMcKay Thayn
Courses Plus Student 6,064 PointsWow I don't know how I missed that. Thank you!