What are the best JavaScript code programming practices? This may be a difficult question to answer. So, let’s change the question, what coding standards are the most popular?
sideeffect.kr came up with some interesting results by analyzing open source code hosted on GitHub. Let’s take a look.
Comma at the end of the line versus comma at the beginning of the line
Quotation mark at the end of the line:
var foo = 1,
bar = 2,
baz = 3;
var obj = {
foo: 1,
bar: 2,
baz: 3
};
First line quotation mark:
var foo = 1
, bar = 2
, baz = 3;
var obj = {
foo: 1
, bar: 2
, baz: 3
};
End of line, 92.345%; beginning of line, 7.655%. (Based on 1,100,251 submissions.)
Spaces and Tabs
Everyone loves to use spaces these days. Using space indentation can ensure that different developers and different editor settings see the same results.
Space, 81.1%; Tab, 18.9%. (Based on 2,019,550 submissions.)
Whether to add spaces after the function
No spaces
function foo() {
return "bar";
}
has spaces
function foo () {
return "bar";
}
None Spaces, 67.424%; spaces, 32.576%. (Based on 1,212,488 submissions.)
Is there a space between the parameters and the brackets?
No space
function fn(arg1, arg2) {
//or
if (true) {
has spaces
function fn( arg1, arg2 ) {
// ...
}
if ( true ) {
// ...
}
Without spaces, 94.31%; with spaces, 5.69%. (Based on 1,514,971 submissions.)
Is there a space around the colon in the object literal?
Is there a space after the colon? > The code is as follows:
Copy code
The code is as follows:
Copy code
The code is as follows:
Personally, I feel that no spaces are too crowded, which is not conducive to quickly distinguishing key and value. If there are spaces before and after, I'm afraid you need to align the colons to make it look beautiful. Judging from statistics, most programmers are too lazy to align colons (or is it that most programmers' IDEs or editors are not smart enough?)
Conditional statement
Copy code
The code is as follows:
if (true) {
//...
}
while (true) {
//...
}
switch (v) {
//...
}
No spaces
if(true) {
//...
}
while(true) {
/ /...
}
switch(v) {
//...
}
With spaces, 78.276%; without spaces, 21.724 %. (Based on 1,163,316 submissions.)
Single quotation mark, double quotation mark
Single quotation mark, 56.791%; double quotation mark, 43.209%. (Based on 1,705,910 submissions.)
Summary
So, the most popular code specification is:
• Comma at end of line
• Space indentation
• No space after function name
• No space between function parameters and parentheses
• Colon after object literal Space, do not add
before colon • Add space after conditional statement keyword
What is popular is not necessarily good (such as influenza), but from a communication perspective, writing code in a popular style can make your code look more familiar to most people.

在现代的软件开发中,代码质量和规范是极为重要的因素。不仅可以让代码更加整洁易于维护,还可以提高代码的可读性和可扩展性。但是,如何检查代码的质量和规范呢?本文将介绍如何使用PHP和PHPUnit来实现这一目标。第一步:检查代码规范在PHP开发中,有一种非常流行的代码规范,它被称为PSR(PHP标准规范)。PSR规范的目的是使PHP代码更具可读性和可维护性。其中

Java开发中如何进行代码文档的编写和维护在Java开发过程中,代码的文档编写和维护是非常重要的一部分。一个好的代码文档可以提高代码的可读性和可维护性,方便项目成员之间的协作和沟通,同时也有助于后期代码的维护和迭代。注释的使用注释是代码文档的基础,它可以用来解释代码的作用、实现逻辑、参数说明等。在Java中,有三种注释形式:单行注释(//)、多行注释(/.

如何通过PHP代码规范规范性能优化引言:随着互联网的迅速发展,越来越多的网站和应用程序基于PHP语言开发。在PHP开发过程中,性能优化是一个至关重要的方面。一个高性能的PHP代码可以显著提高网站的响应速度和用户体验。本文将探讨如何通过PHP代码规范来规范性能优化,并提供一些实际的代码示例供参考。一、减少数据库查询在开发过程中,频繁的数据库查询是一个常见的性能

React 自定义 Hook 是一种将组件逻辑封装在可重用函数中的方式,它们提供了一种在不编写类的情况下复用状态逻辑的方式。本文将详细介绍如何自定义封装 hook。

如何在开发环境中设置代码规范提醒以保持最新PHP代码规范的使用?摘要:在开发过程中,遵循代码规范可以提高代码的可读性和维护性。本文将介绍如何使用代码规范检查工具和IDE来设置代码规范提醒,以帮助开发者保持最新的PHP代码规范。一、代码规范检查工具代码规范检查工具可以在代码编写的过程中检测并提醒不符合规范的代码。以下是几个常用的PHP代码规范检查工具。PHP

Go函数代码风格规范遵循最佳实践来确保代码可读性和可维护性,包括:函数名小写字母开头,单词用下划线分隔。参数类型在参数名称之前,用逗号分隔。返回值类型在函数体之前声明。代码段简短可读,使用空行分隔。编写清晰的注释解释代码意图。变量名小写字母开头,驼峰式命名法。常量名全部大写,下划线分隔单词。接口名称以"I"前缀开头。

Python作为一门高级编程语言,其代码中对缩进的要求特别严格,因为Python的代码块是通过缩进来定义的。因此,缩进不规范的代码将很容易造成语法错误和程序逻辑的混乱,影响代码的可读性和执行效率。那么,如何解决Python的代码中的缩进不规范错误呢?以下是几种解决Python代码中的缩进不规范问题的常见方法:使用文本编辑器的自动缩进功能许多文本编辑器,比如S

如何使用工具自动化检查PHP代码是否符合最新的代码规范?引言:在软件开发过程中,我们经常需要遵循一定的代码规范来保障代码的可读性、可维护性和可扩展性。但是,手动检查代码规范是一项繁琐且容易出错的任务。为了提高效率和减少错误,我们可以使用一些工具来自动化检查代码规范。在本文中,我将介绍如何使用一些流行的工具来自动化检查PHP代码是否符合最新的代码规范。一、PH


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

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
