JS基础_布尔值
Posted 星辰郎周
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS基础_布尔值相关的知识,希望对你有一定的参考价值。
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); //boolean
22 console.log(bool); //false
23
24
25 </script>
26 </head>
27 <body>
28 </body>
29 </html>
以上是关于JS基础_布尔值的主要内容,如果未能解决你的问题,请参考以下文章