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