ming030890
2025-07-04 a750595594321833b48dc19798eed66876a100b4
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}