add
游雁
2024-04-11 70027f0eadaa89f1641d86199cbe5d8664f10bdf
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}