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