Math.random javascript double

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

//usage example: getRandomNumberBetween(20,400); 
function getRandomNumberBetween(min,max){
    return Math.floor(Math.random()*(max-min+1)+min);
}Math.random();
Source

Also in JavaScript: