Several ways of JS object-oriented

Source: Internet
Author: User

First mode: Factory mode

var lev=function () {return " home of the script ";};

function Parent () {var child = new Object (); Child.name= " script "; Child.age= "4"; Child.lev=lev; return child; };

var x = Parent ();

alert (x.name);

Alert (X.lev ());

Second mode: constructor mode

var lev=function () {return " home of the script ";};

function Parent () {this.name= " script "; This.age= "30"; This.lev=lev; };

var x =new Parent ();

alert (x.name);

Alert (X.lev ());

Third mode: Prototype mode

var lev=function () {return " home of the script ";};

function Parent () {};

Parent.prototype.name= " Bruce Lee ";

Parent.prototype.age= "30";

Parent.prototype.lev=lev;

var x =new Parent ();

alert (x.name);

Alert (X.lev ());

Fourth mode: Mixed constructors, prototype mode (recommended)

function Parent () {this.name= " script "; this.age=4; };

Parent.prototype.lev=function () {return this.name;};

var x =new Parent ();

Alert (X.lev ());

Fifth mode: Dynamic prototyping mode

function Parent () {this.name= " script "; this.age=4; if (typeof parent._lev== "undefined") {

Parent.prototype.lev=function () {return this.name;} Parent._lev=true; }

};

var x =new Parent ();

Alert (X.lev ());

Several ways of JS object-oriented

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.