<!DOCTYPE html><html><head><title>随机公式</title></head><script 美国高防vps type=”text/javascript”>// 0~1 之间的随机数 console.log(Math.random()); // 0-10 console.log(Math.round(Math.random()*10));//0~20 之间的随机数console.log(Math.round(Math.random()*20)); // 0-x 之间的随机数 console.log(Math.round(Math.random()*x));//5-10 之间的随机数console.log(Math.round(Math.random()*5+5));//100~1000 之间的随机数 console.log(Math.round(Math.random()*900+100)); //1000-2000 console.log(Math.round(Math.random()*1000+1000)); // x-y 之间的随机数 console.log(Math.round(Math.random()*(y-x)+x)); // 1-x 之间的随机数 // ceil()向上取整 console.log(Math.ceil(Math.random()*x)); </script><body></body></html> 14575087
JS随机数生成公式
【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。