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 trialFaraz Khalid
4,077 PointsWhy 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; }
1 Answer
Steven Parker
231,236 PointsIf 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.
immad Ud din
Front End Web Development Techdegree Student 14,756 Pointsimmad Ud din
Front End Web Development Techdegree Student 14,756 PointsIf 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.