Tips for sharing attributes and methods through prototype attributes in JavaScript _ javascript tips

Source: Internet
Author: User
This article describes how to share attributes and methods using prototype attributes in JavaScript. This article provides a code example. For more information, see the following code:

The Code is as follows:


// Define a function
Function people (name, sex, age ){
This. name = name;
This. sex = sex;
This. age = age;
}

// Share the isStudent and sayName Methods
People. prototype = {
IsStudent: true,
SayName: function (){
Alert (this. name );
}
}

Var people1 = new people ('Han mei', 'female, 16); // instantiate object 1
Var people2 = new people ('lilei', 'male', 17); // instantiate object 2

// Share the two objects to name themselves
Lele1.sayname ();
Lele2.sayname ();

// Determine whether all of them are students by sharing Parameters
If (lele1.isstudent = people2.isStudent) alert ('All of them are stun ');


This article also mentions some knowledge about javascript objects, which should be difficult to understand. If you do not understand it, you can try Baidu.
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.