Table of Contents
1. Basic format
IV. Variables, functions, operators
Home Web Front-end JS Tutorial Detailed introduction to JavaScript coding style guide

Detailed introduction to JavaScript coding style guide

Mar 13, 2017 pm 04:52 PM

1. Basic format

Indentation

It is recommended to have 4 spaces per level. You can set tab = 4 spaces for the editor , automatic conversion

Semicolon

Do not omit the semicolon to prevent ASI (automatic semicolon insertion) errors

Line width

Each line of code should not exceed 80 characters. If it is too long, you should use the operator to manually break the line

Line break

The operator is at the end of the previous line. And the next line is indented 2 levels. If it is an assignment statement, it should also be aligned with the part after the equal sign

Empty line

Function Declaration and Function declarations, variable declarations, function declarations, and logic blocks within functions should all be separated by blank lines

The author Nicholas also recommends leaving a blank line at the top of the Flow control block, but The example given is not very clear

Naming

  • Variable name/Function name: Camel (camel case) rule, first The first letter of a word is lowercase, the first letter of subsequent words is uppercase, and the rest is lowercase

  • ConstantName:C language formula, all capitals, underscore word segmentation

  • Constructor: Pascal rule, all the first letters of words are capitalized, and the rest are lowercase

##Literal

II.

Notes

P.S. There is a very classic explanation in the book:

Appropriately written comments help tell the story of code,

allowing other developers to drop into a part of the story without needing to hear the beginning.

Single-line comments

  • End of line: use 1 Level indentation separates code, and there must be a space after //

  • is on one line: used to comment below, and must maintain the same indentation as the commented code

  • Head of line: used to comment multi-line code

Multi-line comments

Used to wrap large comments , recommend

Eclipse style, such as

/*
 * comment line1
 * comment line2
 */
Copy after login

Note:

  • Leave a blank line above the multi-line comment

  • *Leave a space after the asterisk

  • Multi-line comments must be at least three lines (because there are no comments after the first and last lines)

Where to add comments

  • Non-self-explanatory code

  • Intentional , but it looks like something is wrong

  • Browser hack

Documentation comments

Comments should be added to each function, including function description, parameters, return values, errors thrown, etc., such as the recommended Eclipse style:

/**
 * 添加指定元素到默认数组
 *
 * @method add
 * @param {Number} 将要添加的元素
 * @return {Boolean} 添加成功/失败
 * @throw {TypeError} 参数类型不匹配
 */
function add(item){
    if(typeof item === "number"){
        arr.push(item)
    }
    else{
        throw new TypeError();
    }
}
Copy after login

3. Statements and expressions

Brace alignment

Recommended line ending style, not recommended sub-line style

Block statement space

after if There is a space before and after the parentheses, for example:

if (expr) {
    code
}
Copy after login

switch statement

  • Indentation: case and switch alignment,

    breakIndent 1 level

  • case penetration: Use a blank line or comment //falls through to indicate that case penetration is intentional

  • default: Keep default or use the comment //no default to indicate that there is no default

P.S. Douglas, the author of "

JavaScript Language Essence", believes that it should not be Use case to run through (called useless), because it is easy to cause bugs, and Nicholas thinks that it is better to use a blank line or a comment

with statement

No need

for loop

All variables should be declared at the top of the function body, including variables used in the initialization part of the for loop, to avoid bugs caused by hosting (promotion) (global variables may be blocked)

for-in loop

Do not use it to traverse arrays. When using it, remember to add hasOwnProperty filtering. If you deliberately traverse prototype properties, you should use comments to explain

IV. Variables, functions, operators

Variable declaration

Function body = variable declaration + function declaration + logical statement. Separate each part with a blank line

Function declaration

Declare first and then use it. Never put the function declaration in the if branch, because browsers understand it differently. Moreover, ES does not provide standard

function calls.

There are no spaces before and after the parentheses to avoid confusion with block statements

## Anonymous functionImmediate execution

Wrap the immediately executed anonymous function in parentheses to avoid confusion with the anonymous function declaration

Strict mode

Don’t enable strict mode in the global scope, only enable it inside the function. If you enable it for multiple functions, you can use anonymous functions to immediately execute the scope that limits the strict mode.

Judgment is equal to

Only use === and !==

eval

Do not use eval() and new Function(), use anonymous function to optimize setTimeout() And setInterval()

Basic packaging type

Do not use new Boolean(), new String(), new Number()


The above is the detailed content of Detailed introduction to JavaScript coding style guide. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

JavaScript and WebSocket: Building an efficient real-time image processing system JavaScript and WebSocket: Building an efficient real-time image processing system Dec 17, 2023 am 08:41 AM

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data

See all articles