语帆
2024-02-28 0d32e02c79d751ae15af8fb767df32564e34cbf7
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}