游雁
2024-02-21 d6431252dca314172ce2d0d945ff4d001af6a18f
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}