Math.random()
to generate a random number and map it to the desired range.Math.floor()
to make it an integer.const randomIntegerInRange = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min;
randomIntegerInRange(0, 5); // 2
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️