给定一个包含两个元素的数组,最简单的表达随机抛硬币的方法是什么?var choices = ['#00f', '#ff0']; document.bgcolor = choices[Math.floor(Math.random() * choices.length)]; 最佳答案 document.bgColor = (Math.random() < 0.5) ? '#0000FF' : '#FF0000';