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