/*
* Boolean 布尔值
* 布尔值只有两个,主要用来逻辑判断
* true 表示真
* false 表示假
*
* 使用typeof检查一个布尔值时,会返回Boplean
*
*
*/
var bool = false;
console.log(typeof bool);
console.log(bool);
运行var bool = false; 并使用typeof查询布尔值时得到的结果: