为什么 Math.random() * 1000 会产生0-1000之间的随机数?
问题描述:
为什么 Math.random() * 1000 会产生0-1000之间的随机数?
答
Math.random()这个函数会产生一个[0,1)的数字,所以边界乘以1000,就变成了[0,1000)了.
为什么 Math.random() * 1000 会产生0-1000之间的随机数?
Math.random()这个函数会产生一个[0,1)的数字,所以边界乘以1000,就变成了[0,1000)了.