1. Naming Conventions
- Variables should be named using
snake_case.- Constants, on the other hand, should be named using
UPPER_SNAKE_CASE.
- Constants, on the other hand, should be named using
- Functions should be named using
camelCase.
If you’re making a library, you should append the name of the library to the front of any functions or values using an underscore. e.g. math_squareRoot