Function Creation Object (4) dynamic prototype mode

Source: Internet
Author: User

Encapsulates all information within a constructor, by initializing the prototype in the constructor, preserving the advantages of using both constructors and prototypes, and determining whether the prototype needs to be initialized by checking whether a method that should be stored is valid. (if judged)

function Person (name,age,job) {     this.name=name;     This.age-age;     This.job=job;    Determine if the method exists    if (typeof this.sayname!= "function") {           person.prototype.sayname=function () {                    alert ( this.name);}      ;  } var friend=new person ("Nicholas", "Engineer"); Friend.sayname ();

Note: When using the dynamic prototype pattern, you cannot rewrite the prototype with object literals, which will cut off the connection between the instance and the new prototype, using the ISSTANCEOF operator to determine the type of object being created.

Function Creation Object (4) dynamic prototype mode

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.