Answers for "console.log(Math.floor(Math.random() * 9)+1);"

37

javascript get random number in range

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

//usage example: getRandomNumberBetween(20,400);
Posted by: Guest on July-23-2019

Code answers related to "console.log(Math.floor(Math.random() * 9)+1);"

Code answers related to "Javascript"

Browse Popular Code Answers by Language