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