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