欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JavaScript编程中布尔对象的基本使用

程序员文章站 2023-01-01 21:05:11
boolean(布尔)对象用于将非布尔值转换为布尔值(true 或者 false)。 检查布尔值 检查布尔对象是 true 还是 false。 源代码示例:...

boolean(布尔)对象用于将非布尔值转换为布尔值(true 或者 false)。

检查布尔值
检查布尔对象是 true 还是 false。
源代码示例:

<!doctype html>
<html>
<body>
​
<script>
var b1=new boolean(0);
var b2=new boolean(1);
var b3=new boolean("");
var b4=new boolean(null);
var b5=new boolean(nan);
var b6=new boolean("false");
​
document.write("0 is boolean "+ b1 +"<br>");
document.write("1 is boolean "+ b2 +"<br>");
document.write("an empty string is boolean "+ b3 + "<br>");
document.write("null is boolean "+ b4+ "<br>");
document.write("nan is boolean "+ b5 +"<br>");
document.write("the string 'false' is boolean "+ b6 +"<br>");
</script>
​
</body>
</html> 

测试结果:

0 is boolean false
1 is boolean true
an empty string is boolean false
null is boolean false
nan is boolean false
the string 'false' is boolean true

创建 boolean 对象
boolean 对象代表两个值:"true" 或者 "false"
下面的代码定义了一个名为 myboolean 的布尔对象:

var myboolean=new boolean();

如果布尔对象无初始值或者其值为:

0
-0
null
""
false
undefined
nan

那么对象的值为 false。否则,其值为 true(即使当自变量为字符串 "false" 时)!