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
2023-11-02 19:37:16
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
下一篇:C#线程通信与异步委托