JavaScript code specification and other considerations

Source: Internet
Author: User

Code execution is generally top-down, and variables need to be declared before the function segment used and given an initial value.

Code Specification writing:

1. Use the TAB key after the code snippet is selected to make the snippet move to the right for a certain position (typically 4-bit), making it easier to use the TAB key to align the code snippet. Code snippets are aligned for better readability.

2. The equal sign "=", plus "+" should be empty 1 bits on both sides of the mathematical operator. such as x = x + 1;

3. Add comments generally use "//". Comments should be straightforward.

4. Proper use of blank lines in code snippets can improve readability.

5. Variables usually use the combination of letters, underscores, numbers, and the first letter should be used, it is recommended to use the variable name in the form of sunsize . Easy to write and easy to read.

Shortcuts/Abbreviations

" x = x + 1;" = "x + = 1;" Note that there is no space between the plus sign and the equals sign.

      x + +; there is no spacing.

JavaScript code specification and other considerations

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.