游雁
2024-07-30 d238a5ab4450aad636bbbc60d67335ca59b3bd9c
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}