zhifu gao
2024-01-24 1c8376ea7e3be1150991bd225ab8cbf2c5b3df93
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}