游雁
2024-02-19 25fbf7110b5fc66d592bd5e94624a0ddb60e50b8
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}