random function javascript

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

//usage example: getRandomNumberBetween(20,400); 
// Genereates a number between 0 to 1;
Math.random();

// to gerate a randome rounded number between 1 to 10;
var theRandomNumber = Math.floor(Math.random() * 10) + 1;Math.floor(Math.random() * 6) + 1  function getRandomNumberBetween(min,max){
    return Math.floor(Math.random()*(max-min+1)+min);
}function randomNumber(min, max) {
  return Math.random() * (max - min) + min;
}let object = random(0, 50);
// making "object" a random number between 0 and 50.

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

Also in JavaScript: