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