Answers for "js random int max min"

-1

function to get random number from min max range

funtion getRandomNumber(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max-min) )
}
Posted by: Guest on July-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language