游雁
2024-04-30 f5958e96da05220c9e07d0af63df339cae4cc6f7
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}