0
GGGiovanny Gongora
Generates a random integer in the specified range.
0 Comments
const randomIntegerInRange = (min: number, max: number) => Math.floor(Math.random() * (max - min + 1)) + min;