雾聪
2024-10-29 c540f7c8311337e82223aa0ee7ae874816b92937
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}