Shi Xian
2024-06-17 ba54c2f88f8037f067d236febecb1e333b5e2543
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}