javascript random number between 0 and 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: 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 3: generate random number javascript

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

Example 4: random in a range js

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

Example 5: javascript random number between 0 and 10

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

Example 6: typescript random number

/**
* Gets random int
* @param min 
* @param max 
* @returns random int - min & max inclusive
*/
getRandomInt(min, max) : number{
	min = Math.ceil(min);
	max = Math.floor(max);
	return Math.floor(Math.random() * (max - min + 1)) + min; 
}