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 A Closer Look at Loop Conditions

Faraz Khalid
Faraz Khalid
4,077 Points

Why can't the random number for variable guess be declared outside the function?

Why can't the random number for the variable guess be generated outside the function as follows >

var ranNum= randomNumber (1000); var guess =randomNumber (1000); var counter =1;

while (guess !== ranNum) { counter +=1; }

If you initialize guess outside it will have only one value as var guess = randomNumber(1000) will run only once. say guess has 456 and randomNumber has 500. so the two values will not match thus makes the loop endless. for the sake of guess to get a fresh value it is inside the loop until it matches the randomNumber.

1 Answer

Steven Parker
Steven Parker
229,657 Points

If both numbers are generated before the loop, then unless they happen to be the same (which is extremely unlikely!) the loop would never end.

The purpose of the exercise is to generate a new number inside the loop to see how many tries it takes to match the one that was generated before the loop started.