js get random number between 1 and 100 code example
Example 1: angular random number between 1 and 10
function randomNumber(min, max) {
return Math.random() * (max - min) + min;
}
Example 2: javascript random number in range
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min; //The maximum is exclusive and the minimum is inclusive
}