游雁
2024-08-02 7f6099140a781bd18115bd82a5dd0525d43af290
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}