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