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