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