shixian.shi
2024-02-21 0c64e61c97a8232203694c3672e254d736a13be3
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}