Boolean b=new Boolean(value);
<script>
document.write(10<20); // true
document.write(10<5); // false
</script>
属性 | 说明 |
constructor | 返回创建布尔对象的布尔函数的引用。 |
prototype | 使您能够在布尔原型中添加属性和方法。 |
方法 | 说明 |
toSource() | 将布尔对象的源作为字符串返回。 |
toString() | 将布尔值转换为字符串。 |
valueOf() | 将其他类型转换为布尔值。 |