游雁
2023-12-11 6745487e9c08c0429e542492a55594847b1c0f3c
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}