math random number floor javascript code example
Example 1: random int between two numbers javascript
// Between any two numbers
Math.floor(Math.random() * (max - min + 1)) + min;
// Between 0 and max
Math.floor(Math.random() * (max + 1));
// Between 1 and max
Math.floor(Math.random() * max) + 1;
Example 2: javascript get random number
// Returns an integer between min and max (the maximum is exclusive and the minimum is inclusive)
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min) + min);
}