游雁
2024-06-11 9e13f028bc4c0442b41801cfc346b4465f10d578
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}