javascript random number between 1 and 100 including 1 and 100 code example
Example 1: javascript random number between 1 and 10
// Genereates a number between 0 to 1;
Math.random();
// to gerate a randome rounded number between 1 to 10;
var theRandomNumber = Math.floor(Math.random() * 10) + 1;
Example 2: math.floor + roandom
//Write the following code to get a random number between 1 and 10
const result = Math.floor(Math.random()*(10)+ 1);