“générer un nombre entier aléatoire entre 2 javascript” Réponses codées

aléatoire int entre deux nombres 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

générer un nombre entier aléatoire entre 2 javascript

/**
 * Returns a random number between min (inclusive) and max (exclusive)
 */
function getRandomArbitrary(min, max) {
    return Math.random() * (max - min) + min;
}

/**
 * Returns a random integer between min (inclusive) and max (inclusive).
 * The value is no lower than min (or the next integer greater than min
 * if min isn't an integer) and no greater than max (or the next integer
 * lower than max if max isn't an integer).
 * Using Math.round() will give you a non-uniform distribution!
 */
function getRandomInt(min, max) {
    min = Math.ceil(min);
    max = Math.floor(max);
    return Math.floor(Math.random() * (max - min + 1)) + min;
}
@codebraker

Réponses similaires à “générer un nombre entier aléatoire entre 2 javascript”

Questions similaires à “générer un nombre entier aléatoire entre 2 javascript”

Plus de réponses similaires à “générer un nombre entier aléatoire entre 2 javascript” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code