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