CamelCase style of writing names
The style of writing names camelCase implies that each of the words, except for the first, begins with a capital letter. Example:
testName = 3
This style of writing names is typical for the JavaScript language, and for the modern PHP language.
See also
-
code style standard
Code style,
which sets guidelines for code style -
code style
snake-case,
which is often used in variable and function names -
code style
kebab-case,
which is often used in variable and function names -
code style
pascal-case,
which is often used in variable and function names