<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
<script type="text/javascript">
/**
* Boolean 布尔值有两个,主要用来做逻辑判断
* true
* - 表示真
* false
* - 表示假
* 使用 typeof 检查布尔值时,会返回 boolean
*/
var bool = true;
console.log(bool);
console.log(typeof(bool));
</script>
</head>
<body>
</body>
</html>