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