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