Math.random()
to generate a random value, map it to the desired range using multiplication.const randomNumberInRange = (min, max) => Math.random() * (max - min) + min;
randomNumberInRange(2, 10); // 6.0211363285087005
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️