javascript nombre aléatoire entre 1 et 11 code example
Example 1: random js
function randomNumber(min, max) {
return Math.floor(Math.random() * (max - min)) + min + 1;
}
Example 2: 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;
}