shixian.shi
2024-01-05 e9a015e79a32613ef9a2122bb5559fe7ca5655e1
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}