Skip to content

Instantly share code, notes, and snippets.

@davidcalhoun
davidcalhoun / js-best-practices.md
Created September 7, 2011 18:33
JavaScript best practices

JavaScript Best Practices

Code conventions

Closing/opening brackets

Although this isn't a problem in other languages, because of semicolon insertion, there could be problems if you don't place the bracket on the opening line:

// no:
function()
{