math.random times 10 code example
Example 1: javascript random number between
Math.floor(Math.random() * 6) + 1
Example 2: javascript random
function random(min, max) {
return ~~(Math.random() * (max - min + 1) + min);
}
random(1, 5);
Math.floor(Math.random() * 6) + 1
function random(min, max) {
return ~~(Math.random() * (max - min + 1) + min);
}
random(1, 5);