"Web front end development Best Practices Series" JavaScript Chapter

Source: Internet
Author: User

First, develop good coding habits, improve maintainability

1. Avoid defining global variables and functions, and solving global variables. The simplest method of "pollution" is to encapsulate variables and methods on a variable object, making it a property of the object:

1 var  Mycurrentaction = {2     length:0 ,3     function() {}, 4     function () {}5 }

You can also include global variables in a local scope, and then complete the definition of these variables and the logic used by the variables in this scope:

1 (function() {2    var length = 0; 3    function init () {} 4    function action () {} 5 }) ();

The module interacts with the return statement (that is, encapsulating the code logic and exposing the interface that needs to be accessed):

1 var mycurrentaction = (function() {2      var length = 0; 3      function init () {} 4      function action () {} 5      return {6         init:init7  }8 }) ();

"Web front end development Best Practices Series" JavaScript Chapter

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.