gaochangfeng
2024-05-15 2f7dcbad90e82e964ab381ad63ff5109dd92327d
1
2
3
export function randomNum (n, m) {
    return Math.floor(Math.random() * (m - n + 1) + n)
}