游雁
2024-03-25 eb3d5c78bf764799f98ba5b19307831efd62285d
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}