JavaScript Coding style __ajax

Source: Internet
Author: User

JS Coding Style

1, all lines of code end with semicolons. Although JS does allow line breaks to end.

2, using an if or a for statement, you must use {}. Instant only one sentence.

3, unlike other programming languages, JS, block {} is not scoped as a variable. JS only supports function-level scopes (var definition), or global scope (undefined, or var defined outside the function).

Therefore, only allow function,if,switch,while,for,do,try statements in JS block {}, other places using block {}, will be an error.

4,var can only be used once, and must be declared before use.

The statement after the 5,return,break,continue,throw statement is an unreachable statement. Should be followed by} end.

The unreachable statements in JS may also be executed.

For example, after a form submission is executed, subsequent statements can also be executed.

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.