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 trialhmmnotme
4,968 Pointsguess = getRandomNumber( upper);
guess = getRandomNumber( upper) */ We set the empty variable guess, to the function that contains the formula for picking a random number. This is the same function that the computer used at first to come up with a random number. Doesn't setting guess to getRandomNumber( upper) give away the answer that is picked by the computer already?! */
1 Answer
Ruben Ponce
Full Stack JavaScript Techdegree Student 12,035 PointsThe reason guess=getRandomNumber(upper)
is to make the guess variable cycle through a bunch of random numbers. As you see in the while loop, the guess variable is constantly being changed to a new number everytime while runs, and every time it runs, attempt
is recording it. randomNumber
calls the getRandomNumber()
function one time only, so randomNumber is a single number. I hope that helps.
hmmnotme
4,968 Pointshmmnotme
4,968 PointsSo basically, the number would not be the same because every time it is accessed, it generates a new random number?
Ruben Ponce
Full Stack JavaScript Techdegree Student 12,035 PointsRuben Ponce
Full Stack JavaScript Techdegree Student 12,035 PointsYes, it calls the function once every-time
guess
is not equal torandomNumber
hmmnotme
4,968 Pointshmmnotme
4,968 PointsGreat! Thanks Ruben :)