雾聪
2024-01-15 ff36c82adc37cb18fc298fec81062e03c57d13c5
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}