游雁
2024-04-29 a883f2342aae400552b628bab973d8a30346a613
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}