zhifu gao
2023-12-07 5cf512419c282f833ee35a2f31890bff00d94343
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}