标签: javascript html colors random
给定一个由两个元素组成的数组,表示随机掷硬币的最优雅方式是什么呢?
var choices = ['#00f', '#ff0']; document.bgcolor = choices[Math.floor(Math.random() * choices.length)];
答案 0 :(得分:1)
document.bgColor = (Math.random() < 0.5) ? '#0000FF' : '#FF0000';