Boolean object in JavaScript attribute resolution _ Basics

Source: Internet
Author: User

Constructor property

Instance
Returns the function created by the prototype of the MyVar object:

var myvar = new Boolean (1);
Myvar.constructor;


Result output:

function Boolean () {[native code]}

Definitions and usage
The constructor property returns a reference to the Boolean function that created this object.


prototype Builder
Create a new method for the Boolean object:

Boolean.prototype.mycolor=function ()
{
if (this.valueof () ==true)
 {
 this.color= "green";
 }
else
 {
 this.color= "red";
 }
}

Create a Boolean object and add the MyColor method:

var a=new Boolean (1);
A.mycolor ();
var B=a.color;


b Result output:

Green

Definitions and usage
The prototype property gives you the ability to add properties and methods to an object.
When constructing a prototype, all Boolean objects add properties or methods by default.
Note: Prototype is a global property, which is for almost all JavaScript objects.

Related Article

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.