xmx0632
2025-04-14 e7237d8cb4f2430190817c260ea747e594d6ac35
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}