shixian.shi
2024-02-21 9bed46a31e28095a203806ccdd20932476124b47
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}