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 trialNaivedya Bansal
5,483 Pointsdefault value
What is the default value given to the guess variable while declaration?
2 Answers
Marcus Parsons
15,719 PointsHey Naivedya Bansal,
The guess
variable will be considered undefined
by default because it has had no assignment done to it.
You can check that this is true by opening up either Firefox or Chrome's console (or doing a test js script) and typing out the following:
var guess;
console.log(guess);
//if not using Chrome or Firefox:
//alert(guess);
I hope that helps, Naivedya!
John McCall
2,630 PointsBy just creating a variable "var guess;" you aren't actually applying a value to the variable but just creating it so it can be called later on in the program.
"var guess = getRandomNumber(upper);" also worked, but is more typing!