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