0
Q:

how to create a random number generator in javascript

//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.floor(Math.random() * (max - min)) + min;
}
11
console.log(Math.floor(Math.random() * 10))
0
var randomNo = Math.floor(Math.rand() * 10000000001);
console.log(randomNo);

//This will generate random number
0

Math.random()
1

New to Communities?

Join the community