math random javascript 2 to 11 code example
Example 1: javascript random no between 2 numbers
function randomIntFromInterval(min, max) {
return Math.floor(Math.random() * (max - min + 1) + min);
}
Example 2: javascript random number between 1 and 10
Math.random();
var theRandomNumber = Math.floor(Math.random() * 10) + 1;
Example 3: generate random whole number between 2 javascript
function getRandomArbitrary(min, max) {
return Math.random() * (max - min) + min;
}
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}