javascript random number 1-100 code example
Example 1: javascript get random number in range
function getRandomNumberBetween(min,max){
return Math.floor(Math.random()*(max-min+1)+min);
}
//usage example: getRandomNumberBetween(20,400);
Example 2: angular random number between 1 and 10
function randomNumber(min, max) {
return Math.random() * (max - min) + min;
}
Example 3: get random numbers javascript
//Write the following code to get a random number between 0 and n
Math.floor(Math.random() * n);
Example 4: math random 0 to 100
Math.floor(Math.random() * 101);