游雁
2024-05-06 15bb198d4af581356917ec4c96322fefbd1e01d3
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}