“Math.floor (math.random () * 10)” Réponses codées

Math.floor (math.random () * (max - min 1) min)

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

//usage example: getRandomNumberBetween(20,400); 
Grepper

Math.floor (math.random () * 10)

10-1+1
Light Llama

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code