shixian.shi
2023-12-27 9afc91702a77235990988916bbb2e09abe4edaa3
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}