Shi Xian
2024-03-01 590dfdefe39baf7da18693228e1ce6bf60b23bee
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}