rando number jquery code example
Example 1: how to write a program that shows a random number between 1 and 100 in your browser
var randomNum ;
randomNum = Math.ceil(Math.random() * 100);
document.write("Random number between 1 and 100: " + randomNum)
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);