Q:

generate random number jquery

//To genereate a number between 0-1
Math.random();
//To generate a number that is a whole number rounded down
Math.floor(Math.random())
/*To generate a number that is a whole number rounded down between
1 and 10 */
Math.floor(Math.random() * 10) + 1 //the + 1 makes it so its not 0.
25
function randomNumber(min, max) {
  return Math.random() * (max - min) + min;
}
4
var randomNum ;
randomNum = Math.ceil(Math.random() * 100);
document.write("Random number between 1 and 100: " + randomNum)
-2
$("h1").html(Math.floor(Math.random() * 10)); // Generate a number between 0-9
//Change 10 to the value you want to be the max number to generate
0

New to Communities?

Join the community