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