inisis
2024-12-17 c4412495bded97f40c7cdd5ab37cb5f789bfff41
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}