游雁
2024-11-20 58830eca4012644aac0c3218c3ccc7d98f003fda
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}