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

McKay Thayn
PLUS
McKay Thayn
Courses Plus Student 6,064 Points

Can'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

script.js
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

You have count = 0 and a condition to run of count > 26 therefore the while loop never runs. It should be count < 26.

McKay Thayn
McKay Thayn
Courses Plus Student 6,064 Points

Wow I don't know how I missed that. Thank you!