完全随机的代码能写出来吗

更新时间:01-24 综合 由 暗香浮 分享

能。

1/2概率

let rand = 0.5-Math.random() > 0 ? true : false

1/3、2/3概率(其他依次类推)

let rand = 1/3 - Math.random() > 0 ? true : false

0-n 、1-n、m-n随机整数

let rand = Math.floor((n +1) * Math.random())//0=< rand <= n

声明:关于《完全随机的代码能写出来吗》以上内容仅供参考,若您的权利被侵害,请联系13825271@qq.com
本文网址:http://www.25820.com/all/15_1752005.html