Nixon
2024-09-14 1af68ba6ffc21d4dc3bd5f01cda656def97e361c
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}