随机布尔值

生成一个随机的布尔值。

  • 使用 Math.random() 生成一个随机数,并检查它是否大于或等于 0.5
const randomBoolean = () => Math.random() >= 0.5;

randomBoolean(); // true