javascript pick random number int code example
Example 1: javascript random integer
const randInt = (min, max) => Math.floor(min + Math.random() * (max - min + 1));
Example 2: generate random int js
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}