Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 279 Bytes

indentation.md

File metadata and controls

14 lines (10 loc) · 279 Bytes

Indentations

Indentation should be 2 spaces. This is a pretty common indentation style and good for fitting code on 80 characters per line.

Exceptions: See ternary operator.

JavaScript

if (true) {
  // Do something
}