Home  >  Article  >  Web Front-end  >  JavaScript method valueOf() returns the original value of a Boolean object

JavaScript method valueOf() returns the original value of a Boolean object

黄舟
黄舟Original
2017-11-04 13:18:591682browse

Definition and Usage

The valueOf() method returns the original value of a Boolean object.

Syntax

booleanObject.valueOf()

Return value

The original boolean value of booleanObject.

Throws

If the object calling this method is not a Boolean, a TypeError exception is thrown.

Example

In this example, we will create a Boolean object and use valueOf() to get the original value of this object:

<script type="text/javascript">

var boo = new Boolean(false)
document.write(boo.valueOf())

</script>

Output:

false


The above is the detailed content of JavaScript method valueOf() returns the original value of a Boolean object. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn