Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
Update the random number program to ask for two numbers, then provide a random number between the two.
What if the value of lowNumber
is 0
?
The number zero is considered a "falsy" value in JavaScript. In other words, if the value of lowerNumber
is 0
, the if
condition evaluates to false
, and the code in the else
clause runs.
To make the number 0
an acceptable lowNumber
value in the random number program, use the 'greater than or equal tooperator (
>=`) in the condition:
if ( lowNumber >= 0 && highNumber ) {
...
} else {
...
}
Another approach using isNaN()
JavaScript provides a special function called isNaN()
(or "is not a number") that takes one argument and returns a boolean value. It returns true
if the value is NOT a number, and false
if it is.
isNaN()
returns the value true
. However, passing it an actual number, like 6
, returns false
.
In this case, you first test if EITHER variable is not a number. If even one is not a number, display the "Try again" message. To test both variables, use the logical OR (||
) operator:
// Convert the input to a number
const lowNumber = parseInt(inputLow);
const highNumber = parseInt(inputHigh);
// Check if lowNumber OR highNumber is not a number
if ( isNaN(lowNumber) || isNaN(highNumber) ) {
console.log('You need to provide two numbers. Try again.');
} else {
// Use Math.random() and the user's number to generate a random number
const randomNumber = Math.floor( Math.random() * (highNumber - lowNumber + 1) ) + lowNumber;
// Create a message displaying the random number
console.log(`${randomNumber} is a random number between ${lowNumber} and ${highNumber}.`);
}
Resources
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
isaacismyname
1,147 Points1 Answer
-
Travis Williams
3,063 Points1 Answer
-
Eddie Boscana
6,966 Points0 Answers
-
Greg Taylor
798 Points1 Answer
-
Robert Hubbard
Full Stack JavaScript Techdegree Student 6,780 Points1 Answer
-
Frank Greek
Full Stack JavaScript Techdegree Student 981 Points1 Answer
-
Ivan Rakic
2,539 Pointshttps://w.trhou.se/l4hw1th7ha This is my solution. Is it okay?
Posted by Ivan RakicIvan Rakic
2,539 Points1 Answer
-
PLUS
Stephen Cole
Courses Plus Student 15,810 Points2 Answers
-
Istvan Toth
14,348 Points1 Answer
-
Bjørn Jakobsen
Front End Web Development Techdegree Graduate 17,003 Points1 Answer
-
Baljit Padda
6,979 PointsStruggling to understand how to process a user's lowest number when generating a random number in their specified range.
Posted by Baljit PaddaBaljit Padda
6,979 Points1 Answer
-
Devin Cushard
2,236 Points1 Answer
-
Nik Oaks
8,056 PointsDo you need to declare a separate variable when using parse
Posted by Nik OaksNik Oaks
8,056 Points1 Answer
-
PLUS
Jesse Benedict
Courses Plus Student 4,338 Points0 Answers
-
Nicolás Melgarejo
15,647 Points0 Answers
-
Geoffrey Burkholder
Full Stack JavaScript Techdegree Student 1,881 PointsUnexpected token--- Its the semicolon
1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up