JavaScript inherits instance properties by using call

Source: Internet
Author: User

Xxx.call (thisobj, arg1,...) The call can change the execution environment of the current function as an incoming Thisobj object. This can be achieved by inheriting ———— the current object to get the properties and methods of XXX.

Example:

function Animal () {  this.name= ' Animal ';  This.say = function () {     alert (this.name);  }  }

Animal.prototype.walk = ' I can walk '; function Duck () { animal.call (this);
/* In this way, an object that has a constructor duck new is implemented that inherits the attribute (name) and method (say) on the animal */
/* But the properties and methods above the animal's prototype are not inherited. */
/* This means that only instance properties are inherited , not prototype properties. */

This.color = ' white ';} var duck = new Duck ();d Uck.say ();//animal

  

JavaScript inherits instance properties by using call

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.