js获取任意两个数之间的随机数

function getRandom(start, end){

let ran = Math.floor(Math.random()*(end-start+1)+start);

return ran;

}

你可能感兴趣的:(js获取任意两个数之间的随机数)