Home > Web Front-end > JS Tutorial > body text

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

黄舟
Release: 2017-11-04 13:18:59
Original
1671 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:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!