Formatting
| Format Name | Example | Description |
|---|---|---|
| Camel Case | firstCharactersAreCapsExceptFirst | – first characters of each word are captialized – except 1st character in the name – Typically applied to attributes and elements |
| Pascal Case | AllFirstCharactersAreCaps | – All first characters of each word are capitalizaed – Typically used when defining types |
| snake case | names_are_underscored | Underscore is used to separate each word |
| kebab case | names-are-hyphenated | Hyphen is used to separate each word |
| Systems Hungarian notation | iAmANumber | name has a prefix which denotes the data type. |
| Apps Hungarian | objBook | Prefix denotes the application or logical construct such as obj (object) rw (row) etc |