1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title></title> 6 <script type="text/javascript"> 7 8 /* 9 * Boolean 布尔值 10 * 布尔值只有两个,主要用来做逻辑判断 11 * true 12 * - 表示真 13 * false 14 * - 表示假 15 * 16 * 使用typeof检查一个布尔值时,会返回boolean 17 */ 18 19 var bool = false; 20 21 console.log(typeof bool); 22 console.log(bool); 23 24 25 </script> 26 </head> 27 <body> 28 </body> 29 </html>