Created
September 29, 2023 03:31
-
-
Save avii-7/b3b4d434b1bb83640cac34adfb3338b8 to your computer and use it in GitHub Desktop.
Naming Convention
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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