首页 > 编程知识 正文

JS随机数生成公式

时间:2023-05-05 11:07:48 阅读:276134 作者:1777

<!DOCTYPE html><html><head><title>随机公式</title></head><script 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>

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。