random in java script code example

Example 1: random js

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

Example 2: javascript generate random number

Math.random();

Example 3: math random js

function getRandomIntInclusive(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min + 1)) + min; // max & min both included 
}

Example 4: generate random int js

function getRandomInt(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
}