ProgClub standard JavaScript format

From ProgClub
Revision as of 00:59, 12 April 2016 by John (talk | contribs) (White space...)
Jump to: navigation, search

OK, so if there's such a thing as the ProgClub standard JavaScript format I'd better explain what that is... this page remains a work in progress.

Always use curly brackets even when not required:

if ( true ) { return foo(); }

// not:

if ( true ) return foo();

All on one line if only one statement:

if ( true ) { return false; }

// not:

if ( true ) {

  return false;

}

Multiple lines if and if-block is followed by else/else-if:

if ( true ) {

  return false;

}
else {

  return true;

}

// not:

if ( true ) { return false; }
else { return true; }