游雁
2024-05-09 64bf6dd8a1e8b6db43965ff0069a43674dfe4f5f
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}