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