雾聪
2024-04-17 05f5021864f8ea16688c77d3fa7d33224aa1672f
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}