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