math random javascript dice random code example
Example 1: random int javascript
//Returns random Int between 0 and 2 (included)
Math.floor(Math.random()*3)
Example 2: javascript random
function random(min, max) {
return ~~(Math.random() * (max - min + 1) + min);
}
random(1, 5);