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