雾聪
2024-04-17 200bba87f0060cfbc92c6ff45026313c188b6452
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}