js 获取n-m的随机整数

function getRandom(n, m)  {
    return Math.floor(Math.random() * (m - n + 1)) + n
}

你可能感兴趣的:(javascript)