北念
2024-07-23 4fb7e918fef1cd551bdadd689c835473049f676d
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}