nodejs random number

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);
}function getRandomIntInclusive(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min + 1)) + min; // max & min both included 
}
Source

Also in JavaScript: