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