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