📅  最后修改于: 2020-10-25 10:36:39             🧑  作者: Mango
布尔对象表示两个值,即“ true”或“ false” 。如果value参数省略或为0,-0,null,false,NaN,undefined或空字符串(“”),则对象的初始值为false。
使用以下语法创建布尔对象。
var val = new Boolean(value);
以下是布尔对象的属性的列表。
Sr.No | Property & Description |
---|---|
1 | constructor
Returns a reference to the Boolean function that created the object. |
2 | prototype
The prototype property allows you to add properties and methods to an object. |
以下是布尔对象的方法及其说明的列表。
Sr.No | Method & Description |
---|---|
1 |
toSource()
Returns a string containing the source of the Boolean object; you can use this string to create an equivalent object. |
2 |
toString()
Returns a string of either “true” or “false” depending upon the value of the object. |
3 |
valueOf()
Returns the primitive value of the Boolean object. |
在以下各节中,我们将看一些示例来演示布尔方法的用法。