# camelCase
`myVar`
Used for variables in many programming languages, including [[TypeScript]] and [[JavaScript]] - but *not* [[Python]].
# PascalCase
`MyClass`
Used for class names in Java & [[JavaScript]], amongst other places.
# snake_case
`my_col`
Used in [[SQL]] expressions, typically. The conventional variable and method naming format for [[Python]].
May or may not be capitalized, also.
# kabob-case
`background-color`
Used in [[HTML CSS and JavaScript|CSS]], command-line interface flags, and some [[URI]]s (rather than `%20` for spaces)
# SCREAMING_SNAKE_CASE
`MY_CONST`
Used often for constants, enums, and Environment Variables in frameworks like [[NodeJS]].
# UPPERCASE
`MYEXAMPLE`
Not sure where/if this is really used, in practice. Lack of delimiter between words.
# lowercase
`myexample`
Not sure where/if this is really used, in practice. Lack of delimiter between words.
# Sentence case
`This is an example`
Used by most people in most cases.
# Title Case
`The Catcher in the Rye`
Used for book titles, movie titles, and by me (for some reason) in all sorts of incorrect locations.
****
# More
## Source
## Related