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