xuan
2024-02-26 b4affb21ef34ac11cb0252b386080e6494fbfb30
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}