Q:

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); 
25
Math.floor( Math.random () * (max - min + 1)) + min)
0

New to Communities?

Join the community