Detailed introduction to JavaScript coding style guide
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
String : wrapped in double quotes, use the [+] operator for line breaks, do not use the \ escape character
- Value: Do not omit the part before and after the decimal point, do not use octal form
Null: only treat null as Object Placeholder, do not use it to detect formal parameters or uninitialized variables
- Undefined: All
objects should be initialized to null to Distinguish between undefined and uninitialized
- Object literal/array literal: Do not declare objects and arrays in constructor mode
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 , recommendEclipse style, such as
/* * comment line1 * comment line2 */
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(); } }
Brace alignment
Recommended line ending style, not recommended sub-line styleBlock statement space
after if There is a space before and after the parentheses, for example:if (expr) { code }
- 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
with statement
No needAll 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 declarationStrict 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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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 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

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 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 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

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).

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 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
