JS 产生服从均匀分布随机数
Posted on: 2021年11月18日 at 03:09
[min, max]
Math.floor(Math.random() * (max - min + 1)) + min
[min, max)
Math.floor(Math.random() * (max - min)) + min
(min, max]
Math.ceil(Math.random() * (max - min)) + min