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

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

黄舟
Release: 2017-11-04 13:18:59
Original
1808 people have browsed it

Definition and Usage

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

Syntax

booleanObject.valueOf()
Copy after login

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>
Copy after login

Output:

false
Copy after login


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!

Related labels:
Statement of this Website
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
Latest Issues
What are JavaScript hook functions?
From 1970-01-01 08:00:00
0
0
0
What is JavaScript garbage collection?
From 1970-01-01 08:00:00
0
0
0
c++ calls javascript
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template