游雁
2023-11-24 afae93b43dcd6f9061dec5934b6536981c7ef363
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}