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