switch (Math.round(Math.random() * 2 + 1)) { code example
Example: 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;
}