lingji-yidong
2024-08-19 f43da18b5e097515c12438c70fc7918c29e5d0c8
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}