“Zufallszahlengenerator in TypeScript” Code-Antworten

zufällige int zwischen zwei Zahlen JavaScript

// Between any two numbers
Math.floor(Math.random() * (max - min + 1)) + min;

// Between 0 and max
Math.floor(Math.random() * (max + 1));

// Between 1 and max
Math.floor(Math.random() * max) + 1;
Calm Coyote

TIPITIONSSCRIPT -Zufallszahl

/**
* 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

Js zufälliger int

function getRandomInt(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
JonnyG

Zufallszahlengenerator in TypeScript

getRandomInt((min: any), (max: any)) : number{
	min = Math.ceil(min);
	max = Math.floor(max);
	return Math.floor(Math.random() * (max - min + 1)) + min; 
}
HASAN RAY

Ähnliche Antworten wie “Zufallszahlengenerator in TypeScript”

Fragen ähnlich wie “Zufallszahlengenerator in TypeScript”

Weitere verwandte Antworten zu “Zufallszahlengenerator in TypeScript” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen