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