JavaScript has many great style guides. Thus, there is no need to write yet another one. Instead, this chapter describes meta style rules and surveys existing style guides and established best practices. It also mentions practices I like that are more controversial. The idea is to complement existing style guides rather than to replace them.

Existing Style Guides

These are style guides

Additionally, there are two style guides that go meta:

  • Popular Conventions on GitHub analyzes GitHub code to find out which coding conventions are most frequently used.
  • examines what the majority of several popular style guides recommend.

This section will cover some general code writing tips.

There are two important rules

  • How much whitespace (after parentheses, between statements, etc.)
  • Indentation (e.g., how many spaces per level of indentation)
  • How and where to write statements

The second rule is that, if you are joining an existing project, youshould follow its rules rigorously (even if you don’t agree with them).

Code Should Be Easy to Understand

Everyone knows

For most code, the time used for reading it is much greater than thetime used for writing it. It is thus important to make the former aseasy as possible. Here are some guidelines for doing that:

  • Shorter isn’t always better
  • Sometimes writing more means that things are actually faster to read. Let’s consider two examples. First, familiar things are easier to understand. That can mean that using familiar, slightly more verbose, constructs can be preferable. Second, humans read tokens, not characters. Therefore, redBalloon is easier to read than rdBlln.
  • Good code is like a textbook
  • Most code bases are filled with new ideas and concepts. That means that if you want to work with a code base, you need to learn those ideas and concepts. In contrast to textbooks, the added challenge with code is that people will not read it linearly. They will jump in anywhere and should be able to roughly understand what is going on. Three parts of a code base help:
  • Code should explain what is happening; it should be self-explanatory. To write such code, use descriptive identifiers and break up long functions (or methods) into smaller subfunctions. If those functions are small enough and have meaningful names, you can often avoid comments.
  • Comments should explain why things are happening. If you need to know a concept to understand the code, you can either include the name of the concept in an identifier or mention it in a comment. Someone reading the code can then turn to the documentation to find out more about the concept.
  • Documentation should fill in the blanks left by the code and the comments. It should tell you how to get started with the code base and provide you with the big picture. It should also contain a glossary for all important concepts.
  • Don’t be clever; don’t make me think
  • There is a lot of clever code out there that uses in-depth knowledge of the language to achieve impressive terseness. Such code is usually like a puzzle and difficult to figure out. You will encounter the opinion that if people don’t understand such code, maybe they should really learn JavaScript first. But that’s not what this is about. No matter how clever you are, entering other people’s mental universes is always challenging. So simple code is not stupid, it’s code where most of the effort went into making everything easy to understand. Note that “other people” includes your future selves. I often find that clever thoughts I had in the past don’t make sense to my present self.
  • Avoid optimizing for speed or code size
  • Much cleverness is directed at these optimizations. However, you normally don’t need them. On one hand, JavaScript engines are becoming increasingly smart and automatically optimize the speed of code that follows established patterns. On the other hand, minification tools (Chapter 32) rewrite your code so that it is as small as possible. In both cases, tools are clever for you, so that you don’t have to be.

Sometimes you have no choice but to optimize the performance of your code. If you do, be sure to measure and optimize the right pieces. In browsers, the problems are often related to DOM and HTML and not the language proper.

Commonly Accepted Best Practices

A majority of JavaScript

  • Use strict mode. It makes JavaScript a cleaner language (see Strict Mode).
  • Always use semicolons. Avoid the pitfalls of automatic semicolon insertion (see ).
  • Always use strict equality (===) and strict inequality (!==). I recommend never deviating from this rule. I even prefer the first of the following two conditions, even though they are equivalent:
  • Either use only spaces or only tabs for indentation, but don’t mix them.
  • Quoting strings: You can write string literals with either single quotes or double quotes in JavaScript. Single quotes are more common. They make it easier to work with HTML code (which normally has attribute values in double quotes). Other considerations are mentioned in String Literals.
  • Avoid global variables ().

Brace Styles

In languages where

Allman style

If a statement

  1. // Allman brace style
  2. function foo(x, y, z)
  3. {
  4. if (x)
  5. {
  6. a();
  7. }
  8. else
  9. {
  10. b();
  11. c();
  12. }
  13. }

1TBS (One True Brace Style)

Here, a block

  1. // One True Brace Style
  2. function foo(x, y, z) {
  3. if (x) {
  4. a();
  5. } else {
  6. b();
  7. c();
  8. }
  9. }

1TBS is a variant of the (older) K&R (Kernighan and Ritchie) style.[21] In K&R style, functions are written in Allman style and braces are omitted where they are not necessary—for example, around single-statement then cases:

  1. // K&R brace style
  2. function foo(x, y, z)
  3. {
  4. if (x)
  5. a();
  6. b();
  7. c();
  8. }
  9. }

JavaScript

The de facto standard in the JavaScript world is 1TBS. It has been inherited from Java and most style guides recommend it. One reason for that is objective. If you return an object literal, you must put the opening brace in the same line as the keyword return, like this (otherwise, automatic semicolon insertion inserts a semicolon after return, meaning that nothing is returned; see Pitfall: ASI can unexpectedly break up statements):

  1. return {
  2. name: 'Jane'
  3. };

My personal style and preference is:

  • 1TBS (which implies that you use braces whenever possible).
  • As an exception, I omit braces if a statement can be written in a single line. For example:
  1. if (x) return x;

  1. var obj = new Object(); // no
  2. var obj = {}; // yes
  3.  
  4. var arr = new Array(); // no
  5. var arr = []; // yes
  6.  
  7. var regex = new RegExp('abc'); // avoid if possible
  8. var regex = /abc/; // yes

Don’t ever use the constructor Array to Initializing an array with elements (avoid!) explains why:

  1. var arr = new Array('a', 'b', 'c'); // never ever
  2. var arr = [ 'a', 'b', 'c' ]; // yes

Don’t Be Clever

This section collects examples of unrecommended cleverness.

Conditional operator

Don’t nest the

  1. // Don’t:
  2. return x === 0 ? 'red' : x === 1 ? 'green' : 'blue';
  3.  
  4. // Better:
  5. if (x === 0 {
  6. return 'red';
  7. } else if (x === 1) {
  8. return 'green';
  9. } else {
  10. return 'blue';
  11. }
  12.  
  13. // Best:
  14. switch (x) {
  15. case 0:
  16. return 'red';
  17. case 1:
  18. return 'green';
  19. default:
  20. return 'blue';
  21. }

Abbreviating if statements

Don’t abbreviate if statements via logical operators:

  1. foo && bar(); // no
  2. if (foo) bar(); // yes
  3.  
  4. foo || bar(); // no
  5. if (!foo) bar(); // yes

Increment operator

If possible, use the increment operator (++) and the decrement operator () as statements; don’t use them as expressions.

Checking for undefined

  1. if (x === void 0) x = 0; // not necessary in ES5
  2. if (x === undefined) x = 0; // preferable

Starting with ECMAScript 5, the Changing undefined explains why.

Converting a number to an integer

  1. return x >> 0; // no
  2. return Math.round(x); // yes

The shift operator can be used to convert a number to an integer. However, it is usually better to use a more explicit alternative such as Math.round(). gives an overview of all ways of converting to integer.

Acceptable Cleverness

Sometimes you can be clever in JavaScript—if the

Default values

Using the Or (||) operator to provide default values is a common pattern—for example, for parameters:

  1. function f(x) {
  2. x = x || 0;
  3. ...
  4. }

For details and more examples, consult .

Generic methods

If you use methods generically, you can abbreviate Object.prototype as {}. The following two expressions are equivalent:

  1. Object.prototype.hasOwnProperty.call(obj, propKey)
  2. {}.hasOwnProperty.call(obj, propKey)

And Array.prototype can be

  1. Array.prototype.slice.call(arguments)
  2. [].slice.call(arguments)

ECMAScript 5: trailing commas

Trailing commas

  1. var obj = {
  2. first: 'Jane',
  3. last: 'Doe', // legal: trailing comma
  4. };

ECMAScript 5: reserved words

ECMAScript 5 also allows

  1. > var obj = { new: 'abc' };
  2. > obj.new
  3. 'abc'

Let’s look at some conventions I like that are a bit more controversial.

We’ll start with syntactic conventions:

  • Tight whitespace
  • I like relatively tight whitespace. The model is written English: there are no spaces after an opening parenthesis and before a closing parenthesis. And there are spaces after commas:
  1. result = foo('a', 'b');
  2. var arr = [ 1, 2, 3 ];
  3. if (flag) {
  4. ...
  5. }

For anonymous functions, I follow Douglas Crockford’s rule of having a space after the keyword function. The rationale is that this is what a named function expression looks like if you remove the name:

  1. function foo(arg) { ... } // named function expression
  2. function (arg) { ... } // anonymous function expression
  • Four spaces per indentation level
  • Most code I am seeing uses spaces for indentation, because tabs are displayed so differently between applications and operating systems. I prefer four spaces per level of indentation, because that makes the indentation more visible.
  • Put the conditional operator in parentheses
  • This helps with reading, because it is easier to make out the scope of the operator:

Variables

Next, I’ll cover conventions for variables:

  • One variable declaration per line
  • I don’t declare multiple variables with a single declaration:
  1. var foo = 3,
  2. bar = 2,
  3. baz;
  4.  
  5. // yes
  6. var foo = 3;
  7. var bar = 2;
  8. var baz;

The advantages of this approach are that deleting, inserting, and rearranging lines is simpler and the lines are automatically indented correctly.

  • Keep variable declarations local
  • If your function isn’t too long (which it shouldn’t be, anyway), then you can afford to be less careful with regard to hoisting and pretend that var declarations are block-scoped. In other words, you can declare a variable in the context in which it is used (inside a loop, inside a then block or an else block, etc.). This kind of local encapsulation makes a code fragment easier to understand in isolation. It is also easier to remove the code fragment or to move it somewhere else.
  • If you are inside a block, stay inside that block
  • As an addendum to the previous rule: don’t declare the same variable twice, in two different blocks. For example:
  1. // Don’t do this
  2. if (v) {
  3. var x = v;
  4. } else {
  5. var x = 10;
  6. }
  7. doSomethingWith(x);

The preceding code has the same effect and intention as the following code, which is why it should be written that way:

  1. var x;
  2. if (v) {
  3. x = v;
  4. } else {
  5. x = 10;
  6. }
  7. doSomethingWith(x);

Object Orientation

Now we’ll cover conventions relating to

  • Prefer constructors over other instance creation patterns
  • I recommend that you:
  • Always use constructors.
  • Always use new when creating an instance.

The main advantages of doing so are:

  • Your code better fits into the JavaScript mainstream and is more likely to be portable between frameworks.
  • In modern engines, using instances of constructors is very fast (e.g., via hidden classes).
  • Classes, the default inheritance construct in the upcoming ECMAScript 6, will be based on constructors.

For constructors, it is important to use strict mode, because it protects you against forgetting the new operator for instantiation. And you should be aware that you can return any object in a constructor. More tips for using constructors are mentioned in .

  • Avoid closures for private data
  • If you want an object’s private data to be completely safe, you have to use closures. Otherwise, you can use normal properties. One common practice is to prefix the names of private properties with underscores. The problem with closures is that code becomes more complicated (unless you put all methods in the instance, which is unidiomatic and slow) and slower (accessing data in closures is currently slower than accessing properties). Keeping Data Private covers this topic in more detail.
  • Write parens if a constructor has no arguments
  • I find that such a constructor invocation looks cleaner with parentheses:
  1. var foo = new Foo; // no
  2. var foo = new Foo(); // yes
  • Be careful about operator precedence
  • Use parens so that two operators don’t compete with each other—the result is not always what you might expect:
  1. > false && true || true
  2. true
  3. > false && (true || true)
  4. false
  5. > (false && true) || true
  6. true

instanceof is especially tricky:

  1. > ! {} instanceof Array
  2. false
  3. > (!{}) instanceof Array
  4. false
  5. > !({} instanceof Array)
  6. true

However, I find method calls after a constructor unproblematic:

  1. new Foo().bar().baz(); // ok
  2. (new Foo()).bar().baz(); // not necessary

This section collects various tips:

  • Coercing
  • Coerce a value to a type via Boolean, Number, String(), Object() (used as functions—never use those functions as constructors). The rationale is that this convention is more descriptive:
  1. > +'123' // no
  2. 123
  3. > Number('123') // yes
  4. 123
  5.  
  6. > ''+true // no
  7. 'true'
  8. > String(true) // yes
  9. 'true'
  • Avoid this as an implicit parameter
  • this should refer only to the receiver of the current method invocation; it should not be abused as an implicit parameter. The rationale is that such functions are easier to call and understand. I also like to keep object-oriented and functional mechanisms separate:
  1. // Avoid:
  2. function handler() {
  3. this.logError(...);
  4. }
  5.  
  6. // Prefer:
  7. function handler(context) {
  8. context.logError(...);
  9. }
  • Check for the existence of a property via in and hasOwnProperty (see )
  • This is more self-explanatory and safer than comparing with undefined or checking for truthiness:
  • Fail fast

Conclusion


[] Some people even say that they are synonyms, that 1TBS is a way to jokingly refer to K&R.