码迷,mamicode.com
首页 > Web开发 > 详细

js中boolean类型的理解

时间:2016-05-13 14:11:18      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

<html>
<head>

<script type="text/javascript">
        var x="12";
		alert(x+234);
		alert(typeof (x+234));
		var flag=false;  //true=1 false=0;
		alert(flag+34);
</script>
</head>
<body>
   String str="ere";
   int x= 123;
   str+x;
</body>  
</html>

在js中boolean类型的值有两个true和false

其中true=1;

false=0;

和c中的差不多;

js中boolean类型的理解

标签:

原文地址:http://www.cnblogs.com/lonecloud/p/5487957.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!