我们使用 JavaScript Boolean()方法将数字转换为布尔值。 JavaScript 布尔值产生两个值之一,即true或false 。但是,如果想要将存储整数“0”或“1”的变量转换为布尔值,即“true”或“false”。
句法:
Boolean(variable/expression)
示例:
HTML
GeeksforGeeks
Click the button to change the
number value into boolean.
The number value of the variable is :
注意:如果上面的Boolean()方法被调用为Boolean(!numvalue) ,它显示的结果为“ false ”。类似地,如果它被调用为Boolean(!!numvalue),它给出的结果为“ true ”。
输出:
点击按钮前:
点击按钮后: