xxxxxxxxxx
const randomNumber = Math.floor(Math.random() * 10) + 1;
console.log(randomNumber);
xxxxxxxxxx
// 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;
xxxxxxxxxx
function getRandomNumberBetween(min,max){
return Math.floor(Math.random()*(max-min+1)+min);
}
//usage example: getRandomNumberBetween(20,400);
xxxxxxxxxx
//returns a random number between min and max
const randomNumbers = (min, max) => {
return Math.round(Math.random() * (max - min)) + min;
}
xxxxxxxxxx
function randomIntFromInterval(min, max) { // min and max included
return Math.floor(Math.random() * (max - min + 1) + min)
}
const rndInt = randomIntFromInterval(1, 6)
console.log(rndInt)
Run code snippet
xxxxxxxxxx
var randomNumber = Math.floor(Math.random() * (max - min + 1)) + min;
//max is the highest number you want it to generate
//min is the lowest number you want it to generate
xxxxxxxxxx
const randomNumber = Math.floor(Math.random() * 100) + 1;
console.log(randomNumber);
xxxxxxxxxx
function randomInRange(min, max)
{
return Math.floor(Math.random() * (max - min + 1) + min);
}
xxxxxxxxxx
function randomIntFromInterval(min, max) { // min and max included
return Math.floor(Math.random() * (max - min + 1) + min)
}
// es6
const randomIntFromInterval = (min, max) => { // min and max included
return Math.floor(Math.random() * (max - min + 1) + min)
}
// es6 typescript
const randomIntFromInterval = (min: number, max: number): number => { // min and max included
return Math.floor(Math.random() * (max - min + 1) + min)
}
const rndInt = randomIntFromInterval(1, 6)
console.log(rndInt)
Run code snippet
xxxxxxxxxx
const rndInt = Math.floor(Math.random() * 6) + 1
console.log(rndInt)
Run code snippet