Skip to content

Instantly share code, notes, and snippets.

@avii-7
Created September 29, 2023 03:31
Show Gist options
  • Save avii-7/b3b4d434b1bb83640cac34adfb3338b8 to your computer and use it in GitHub Desktop.
Save avii-7/b3b4d434b1bb83640cac34adfb3338b8 to your computer and use it in GitHub Desktop.
Naming Convention
Brochette-case / Kebab case => Hello_World
lowerCamelCase / Dromedary Case => helloWorld
Pascal case / Upper Camal Case => HelloWorld
Snake case
Snake case starts with a lower case letter, and uses an underscore to separate words (although some variations start with an upper case).
Generally associated with the C programming language, although it actually started life with no particular name:
first + _ + Number = first_Number
Examples: my_func(), my_var, name, test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment