Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 290 Bytes

javascript.md

File metadata and controls

43 lines (29 loc) · 290 Bytes

Declaration

Not

var a = 0,
    b = 'stuff';

Not

var a = 0
  , b = 'stuff';

Use

var a = 0;
var b = 'stuff';

Reason

  • debugging
  • modification

Naming

jQuery node

Not

var div = $('.somediv');

Use

var $div = $('.somediv');