random number js in range code example

Example 1: javascript get random number in range

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

//usage example: getRandomNumberBetween(20,400);

Example 2: random in a range js

const rnd = (min,max) => { return Math.floor(Math.random() * (max - min + 1) + min) };

Example 3: Generate random whole numbers within a range javascript

function randomRange(min, max) {

	return Math.floor(Math.random() * (max - min + 1)) + min;

}

console.log(randomRange(1,9));

Example 4: javascript random integer

const randInt = (min, max) => Math.floor(min + Math.random() * (max - min + 1));