课程
/前端开发
/JavaScript
/JavaScript进阶篇
还是document.write(Math.round(Math.random()*10));
2015-08-27
源自:JavaScript进阶篇 7-16
正在回答
加不加括号对输出结果没有影响
document.write(Math.round(Math.random()*10));
Math.random()产生大于等于0到小于1区间的随机数,返回的是数值,乘以10之后就是产生0到10的随机数。所以要在里面乘。
Math.round(Math.random()*10) 0~10的随机数
举报
本课程从如何插入JS代码开始,带您进入网页动态交互世界
3 回答究竟是Math.round(Math.random()*10)还是Math.round((Math.random())*10)
3 回答document.write(Math.round((Math.random())*10))得到的不是整数
5 回答Math.random和Math.round的输出值不对是什么原因?
2 回答Math.round()中
4 回答document.write