首页 > Web开发 > 详细

JS基础_布尔值

时间:2017-07-23 15:50:51      阅读:244      评论:0      收藏:0      [点我收藏+]
 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基础_布尔值

原文:http://www.cnblogs.com/ZHOUVIP/p/7224756.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!