function getRandom(min,max){
return Math.floor(Math.random()*(max-min)+min);
}
封装一个随机数
最新推荐文章于 2024-04-04 19:17:28 发布
function getRandom(min,max){
return Math.floor(Math.random()*(max-min)+min);
}