ES6 - Booleano
O objeto Boolean representa dois valores, "true" ou "false". Se o parâmetro de valor for omitido ou for 0, -0, nulo, falso, NaN, indefinido ou a string vazia (""), o objeto terá um valor inicial falso.
Use a seguinte sintaxe para criar um boolean object.
var val = new Boolean(value);
Propriedades Booleanas
A seguir está uma lista das propriedades do objeto Boolean.
Sr. Não | Descrição da Propriedade |
---|---|
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.