node js random between code example
Example 1: angular random number between 1 and 10
function randomInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
Example 2: math random js
function getRandomIntInclusive(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min; // max & min both included
}