yijinsheng
2025-04-07 9afa40520fc6245e06bde709ecca5722d850734d
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}