雾聪
2023-12-01 6626b8901380699e5f2d630237965b6b87881d7c
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}