雾聪
2023-12-20 b635c062f1550be59047168fcb48a39542913a57
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}