雾聪
2024-06-26 38c1f6393a16f4d15a8897647b8f8693a48f737d
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}