random javasc code example

Example 1: angular random number between 1 and 10

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

Example 2: javascript random

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

Example 3: random function javascript

let object = random(0, 50);
// making "object" a random number between 0 and 50.

console.log(object);
// printing object in the console

Example 4: javascript random()

var randomNo = Math.floor(Math.rand() * 10000000001);
console.log(randomNo);

//This will generate random number