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 trialHubert Odias
1,898 PointsHello i have a question on why he has var = randomNumber = getRandomNumber(upper) as a variable with a function.
Also i would like to know what the purpose of this variable is.
1 Answer
Steven Parker
231,236 PointsLook again, there's only one "=" in that statement:
var randomNumber = getRandomNumber(upper);
This statement uses the "getRandomNumber" function to get a value to store into the new variable "randomNumber" that is created.
And the purpose of the variable is to store that random number so it can be compared to another one later to check for a match.
Hubert Odias
1,898 PointsHubert Odias
1,898 PointsSo itβs storing the random number from the math.random expression to be compared with the correct number? couldnt we use a function expression with a variable consisting of the math.random syntax?
Steven Parker
231,236 PointsSteven Parker
231,236 PointsYou could, but it would be more verbose. And since the same thing will be done in more than one place in the program, creating a named function for it makes sense.