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