"Notes" JavaScript coding specification-accessors

Source: Internet
Author: User

For properties, accessor functions are not required.

If accessor functions are defined, the Getval () and Setval (' Hi ') formats should be referenced.

Baddragon.age ();//Gooddragon.getage ();//Baddragon.age (+);//Gooddragon.setage (25);

If the property is Boolean, the format should be isval () or Hasval ().
Badif (!dragon.age ()) {return false;} Goodif (!dragon.hasage ()) {return false;}
a good idea to create a get () and set () function, but keep it consistent

function Test (options) {Options | | (options = {}); var lightsaber = Options.lightsaber | | ' Blue '; This.set (' lightsaber ', lightsaber);} Test.prototype.set = function (Key, Val) {This[key] = val;}; Test.prototype.get = function (key) {return this[key];};


Genesis 1:16 and God made great lights;the greater light to rule the day,and the lesser light to rule the night:he mad E The Stars alse.

"Notes" JavaScript coding specification-accessors

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.