雾聪
2024-05-15 079fe36edd80fd2f3a8fdecf7d4b510836495dc9
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}