//生成范围a-b内的随机数 包括b
function suijishu(a,b){
return Math.floor(Math.random() * (a-b))+b+1;
};
//使用方法
console.log(suijishu(100,200));
Web前端_JS_生成a到b范围内的随机数
最新推荐文章于 2024-09-19 08:35:01 发布
//生成范围a-b内的随机数 包括b
function suijishu(a,b){
return Math.floor(Math.random() * (a-b))+b+1;
};
//使用方法
console.log(suijishu(100,200));