shixian.shi
2024-01-10 e30a17cf4e715b3d139fa1e0ba01cda1bcf0f884
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}