js Math.radnom code example
Example 1: random js
function randomNumber(min, max) {
return Math.floor(Math.random() * (max - min)) + min + 1;
}
Example 2: angular random number between 1 and 10
function randomInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}