ES6 - บูลีน
วัตถุบูลีนแทนค่าสองค่าอย่างใดอย่างหนึ่ง "true" หรือ "false". ถ้าพารามิเตอร์ค่าถูกละไว้หรือเป็น 0, -0, null, false, NaN, ไม่ได้กำหนดหรือสตริงว่าง ("") อ็อบเจ็กต์จะมีค่าเริ่มต้นเป็นเท็จ
ใช้ไวยากรณ์ต่อไปนี้เพื่อสร้างไฟล์ boolean object.
var val = new Boolean(value);
คุณสมบัติบูลีน
ต่อไปนี้เป็นรายการคุณสมบัติของวัตถุบูลีน
ซีเนียร์ No | คุณสมบัติและคำอธิบาย |
---|---|
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. |
Boolean Methods
Following 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 take a look at a few examples to demonstrate the usage of the Boolean methods.