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