js int rand 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: math.floor + roandom
//Write the following code to get a random number between 1 and 10
const result = Math.floor(Math.random()*(10)+ 1);