js generate random number between 1 and 10 code example
Example 1: random int between two numbers javascript
Math.floor(Math.random() * (max - min + 1)) + min;
Math.floor(Math.random() * (max + 1));
Math.floor(Math.random() * max) + 1;
Example 2: generate random number javascript
function randomNumber(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
Example 3: random int javascript
Math.floor(Math.random()*3)
Example 4: javascript random
function random(min, max) {
return ~~(Math.random() * (max - min + 1) + min);
}
random(1, 5);
Example 5: javascript generate random number
Math.random();