“TypeScript Random int” Código de respuesta

Número aleatorio mecanografiado

/**
* 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; 
}
ChernobylBob

Nombre Random JS

// On renvoie un nombre aléatoire entre une valeur min (incluse) 
// et une valeur max (exclue)
function getRandomArbitrary(min, max) {
  return Math.random() * (max - min) + min;
}
Disgusted Dingo

TypeScript Random int

function GetRandom(max){
  return Math.floor(Math.random() * Math.floor(max))
}

GetRandom(3); //returnval 0, 1, 2
Victorious Vulture

JS aleatorio

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

mecanografiado al azar

function randint(low:number, max?:number) {
  return Math.floor(Math.random() * 10) % (max ?? low) + (max ? low : 0);
}
Jolly Jay

Respuestas similares a “TypeScript Random int”

Preguntas similares a “TypeScript Random int”

Más respuestas relacionadas con “TypeScript Random int” en TypeScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código