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