add
游雁
2024-05-14 403033a15f418d505582950f6b5b58f105a86945
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}