Skip to content

Instantly share code, notes, and snippets.

View ritvvijparrikh's full-sized avatar

Ritvvij Parrikh ritvvijparrikh

View GitHub Profile
@ritvvijparrikh
ritvvijparrikh / js.md
Last active December 28, 2015 12:09

General

  • Indentation - 4 spaces (do not use tabs)
  • Avoid lines longer than 80 characters.
  • Required License in File Header

Naming

  • class - UpperCamelCase
  • functions - lowerCamelCase (preferrably verbs)
  • variables - lower_case_with_underscores (preferrably nouns)
  • constants - ALL_UPPER_CASE_WITH_UNDERSCORES