Javascript objects and Classes

Source: Internet
Author: User
1. Create a person object with four members:
VaR person = new object (); person. firstname = "bill"; person. lastname = "Gates"; person. Age = 56; person. eyecolor = "blue ";

2. Create a person object. The object has four members, which is similar to the previous one.

VaR person = {firstname: "John", lastname: "doe", Age: 50, eyecolor: "blue "};

3. Create a person class with member variables and member functions, which can be instantiated.

Function OB (a, B) {// class construction function, two parameters
This. A =;
This. B = B;
This. Fun = function (x, y) {// member function of the class
Return X + Y;
}
}

// This is a class call:

Var y = new ob (4, 23); // instantiate class ob

VaR P = Y. A; // P = 4
VaR x = Y. Fun (3, 2); // y = 5

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.