标签: javascript
我正在尝试编写几个选择0或1
我希望0和1拥有相同的可能性
我做了这个
chosendirection = Math.floor(Math.random()*2);
但上面没有选择0.它只选择1。
谢谢!
答案 0 :(得分:0)
Math.round(Math.random())
Math.random已经返回0到1之间的值