Truco
2024-10-28 1a45b647a858b72c711c64bfe6b2e5333df6fd86
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}