Shi Xian
2025-03-11 700cb827f5c26235f7c0c1368675748f9318ee37
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}