random js int code example
Example 1: js random number
var random;
var max = 8
function findRandom() {
random = Math.floor(Math.random() * max)
console.log(random)
}
findRandom()
Example 2: random number javascript
function getRandomNumberBetween(min,max){
return Math.floor(Math.random()*(max-min+1)+min);
}
getRandomNumberBetween(50,80);
Example 3: random int javascript
Math.floor(Math.random()*3)
Example 4: math random js
function getRandomIntInclusive(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}