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