雾聪
2024-03-14 0285a3ae5b75d1a5ffeb25826881e44694e795f0
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}