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