当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript valueOf()方法
The valueOf() method returns the primitive value of a Boolean object.
使用valueOf()方法可以返回布尔对象的原始值
booleanObject.valueOf() |
In this example we will create a Boolean object and use valueOf() the get the primitive value of it:
在这个举例中我们将建立布尔对象并使用valueOf()来得到它的原始值
<script type="text/javascript"> var boo = new Boolean(false) </script> |
The output of the code above will be:
输出结果为:
false |
valueOf()
How to use valueOf() find the primitive value of a Boolean object.
怎样使用valueOf()来找到布尔对象的原始值