how to generate a random number with min and max in JS code example
Example 1: javascript random no between 2 numbers
function randomIntFromInterval(min, max) { // min and max included
return Math.floor(Math.random() * (max - min + 1) + min);
}
Example 2: random number between min and max script
function getRandomNumberBetween(min,max){
return Math.floor(Math.random()*(max-min+1)+min);
}