雾聪
2024-01-23 f23b6c98381dd91661fc1df753d84a58c725d71a
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}