JS get and set use example _ basic knowledge-js tutorial

Source: Internet
Author: User
The clever use of get and set can directly operate on object attributes for reading and writing, which can greatly improve programming efficiency. The following is a good example. You can refer to the clever use of get and set, the ability to directly perform read/write operations on Object Attributes can greatly improve programming efficiency. A typical example is provided:

The Code is as follows:


Var test = {
_ Name: null,
_ Age: 0,

// _ Name read/write
Set name (name) {this. _ Name = name ;},
Get name () {return this. _ Name ;},
// _ Age read/write
Set age (age) {this. _ Age = age ;},
Get age () {return this. _ Age ;}
}

Alert (test. name + "" + test. age); // bull 0
Test. name = 'Lucy ';
Test. age = 20;
Alert (test. name + "" + test. age); // lucy 20

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.