Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 408 Bytes

array-map-creation.md

File metadata and controls

27 lines (21 loc) · 408 Bytes

Array / Map creation

Use trailing commas and put short declarations on a single line. Only quote keys when your interpreter complains:

JavaScript

Right:

var a = ['hello', 'world'];
var b = {
  good: 'code',
  'is generally': 'pretty'
};

Wrong:

var a = [
  'hello', 'world'
];
var b = {"good": 'code'
        , is generally: 'pretty'
        };