Math.floor(Math.random() + 0.5)
Math.random()的取值范围是:
0<=Math.random()<1 随机小数
Math.floor(X) =X的整数位
例如
Math.floor(6.999) === 6
Math.floor(39.001) === 39
Math.floor(8) === 8
原文地址:https://www.cnblogs.com/lsyy2017/p/11704769.html
时间: 2024-10-10 05:37:56