जावास्क्रिप्ट - बूलियन ऑब्जेक्ट
Booleanऑब्जेक्ट दो मूल्यों का प्रतिनिधित्व करता है, या तो "सच" या "गलत"। यदि मान पैरामीटर छोड़ा गया है या 0, -0, अशक्त, गलत है,NaN, अपरिभाषित, या खाली स्ट्रिंग (""), वस्तु का गलत मूल्य है।
वाक्य - विन्यास
A बनाने के लिए निम्न सिंटैक्स का उपयोग करें boolean वस्तु।
var val = new Boolean(value);
बूलियन गुण
यहाँ बूलियन ऑब्जेक्ट के गुणों की एक सूची है -
अनु क्रमांक। | संपत्ति विवरण |
---|---|
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. |
In the following sections, we will have a few examples to illustrate the properties of Boolean object.
Boolean Methods
Here is a list of the methods of Boolean object and their description.
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. |
In the following sections, we will have a few examples to demonstrate the usage of the Boolean methods.