math.random() * 100 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 int javascript

//Returns random Int between 0 and 2 (included)
Math.floor(Math.random()*3)

Example 3: javascript random

function random(min, max) {
  return ~~(Math.random() * (max - min + 1) + min);
}
random(1, 5);

Example 4: how to create a random number generator in javascript

console.log(Math.floor(Math.random() * 10))

Example 5: math random 0 to 100

Math.floor(Math.random() * 101);