js random number between 1 and 100 check if number is in range code example
Example: function to get random number from min max range
funtion getRandomNumber(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max-min) )
}