The Boolean object initial value of JS example _javascript tips

Source: Internet
Author: User
A Boolean (logical) object is used to convert a non logical value to a logical value (TRUE or false).
Create a Boolean object

Use keyword new to define a Boolean object. The following code defines a logical object named Myboolean:

var myboolean=new Boolean ()

Note: If the logical object has no initial value or its value is 0,-0, NULL, "", false, undefined, or NaN, then the value of the object is false. Otherwise, the value is true even when the argument is string "false"!

All of the following lines of code create a Boolean object with the initial value of false.
Copy Code code as follows:

<script type= "Text/javascript" >
var myboolean=new Boolean ();
document.write (Myboolean);
document.write ("<br/>");

var myboolean=new Boolean (0);
document.write (Myboolean);
document.write ("<br/>");

var myboolean=new Boolean (NULL);
document.write (Myboolean);
document.write ("<br/>");

var myboolean=new Boolean ("");
document.write (Myboolean);
document.write ("<br/>");

var myboolean=new Boolean (false);
document.write (Myboolean);
document.write ("<br/>");

var myboolean=new Boolean (NaN);
document.write (Myboolean);
document.write ("<br/>");
</script>

Run Result:

False
False
False
False
False
False

All of the following lines of code will create a Boolean object with the initial value of true:
Copy Code code as follows:

<script type= "Text/javascript" >
var myboolean=new Boolean (1);
document.write (Myboolean);
document.write ("<br/>");

var myboolean=new Boolean (True);
document.write (Myboolean);
document.write ("<br/>");

var myboolean=new Boolean ("true");
document.write (Myboolean);
document.write ("<br/>");

var myboolean=new Boolean ("false");
document.write (Myboolean);
document.write ("<br/>");

var myboolean=new Boolean ("Bill Gates");
document.write (Myboolean);
document.write ("<br/>");
</script>

Run Result:

True
True
True
True
True
About this initial value and Java and C are not the same, later write the attention of the receptionist Ah!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.