Random Number Generation and Return Values
Learn about random number generation and return values in functions.
We'll cover the following...
Random integers
We met the Math.random()
method previously, which creates a random decimal between
Math.ceil(Math.random() * 10);
It’s a useful exercise to abstract this code into ...