zhifu gao
2024-03-15 675b4605e8d1d9a406f5e6fc3bc989ddc932b04b
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}