辰冢
2025-02-12 5052ca8bf03c178d9ae73cb68785cd4afb0144d2
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}