shixian.shi
2024-02-21 ec4ca408bf9656cdb2a39d1d122936931f3478a9
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}