“Math.Floor (Math.random () *10)” Respostas de código

Math.floor (Math.random () * (máx - 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

Procure respostas de código populares por idioma

Procurar outros idiomas de código