xxxxxxxxxx
random 30 number
generate
generate
30
1
e
ewwqqwq
eekeebdbdndjenenesbsbsbsnsnsnmsndndkdkejden
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
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
function getRandomArbitrary(min, max) {
return Math.random() * (max - min) + min;
}
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
xxxxxxxxxx
const randomNumber = Math.floor(Math.random() * 10) + 1;
console.log(randomNumber);
xxxxxxxxxx
// random number between 2 and 11
// Math.trunc(Math.random() * (max - min + 1)) + min;
let randNum = Math.trunc(Math.random() * (11 - 2 + 1) + 2);
xxxxxxxxxx
const rndInt = Math.floor(Math.random() * 6) + 1
console.log(rndInt)
Run code snippet