//随机生成指定范围内的数
function getRandom(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
js获取指定范围随机数
最新推荐文章于 2022-11-12 20:00:00 发布
//随机生成指定范围内的数
function getRandom(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}