雾聪
2024-04-01 687277ae9d864f33819bc6fe33584271d48776d3
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}