math random range javascript code example
Example 1: math random equitative js
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
Example 2: javascript get random number in range
function getRandomNumberBetween(min,max){
return Math.floor(Math.random()*(max-min+1)+min);
}
Example 3: generate random numbers in js
Math.floor((Math.random() * 100) + 1);
Example 4: random in a range js
const rnd = (min,max) => { return Math.floor(Math.random() * (max - min + 1) + min) };
Example 5: randint js
const Math.randint => (min,max) {
[min,max] = (max===undefined)?[0,min]:(min>max)[max,min]:[min,max];
return Math.floor(Math.random*(max-min)+min);
}