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