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