语帆
2024-02-29 4477e27bf08f065dacd37c82fc88e69f43805328
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}