雾聪
2023-11-30 168d4ac2ff7676f73ff4ee79809ddaeb1d2549aa
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}