get random number between 0 and 3 javascript code example
Example 1: js random number
var random;
var max = 8
function findRandom() {
random = Math.floor(Math.random() * max) //Finds number between 0 - max
console.log(random)
}
findRandom()
Example 2: random number in javascript
var randomNo = Math.floor(Math.rand() * 10000000001);
console.log(randomNo);
//This will generate random number