typescript random code example
Example 1: random js
function randomNumber(min, max) {
return Math.floor(Math.random() * (max - min)) + min + 1;
}
Example 2: nombre random js
function getRandomArbitrary(min, max) {
return Math.random() * (max - min) + min;
}
Example 3: javascript random number in range
function getRandomIntInclusive(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
Example 4: typescript random number
getRandomInt(min, max) : number{
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
Example 5: javascript random number in range
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min;
}
Example 6: typescript random int
function GetRandom(max){
return Math.floor(Math.random() * Math.floor(max))
}
GetRandom(3);