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