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