游雁
2024-01-31 85e658a0f6212cd8006d6a84aff9f3d67694950c
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}