What is camelCase?

CamelCase is a naming convention where words are joined without spaces, and each word after the first starts with a capital letter. For example: "myVariableName" or "getUserById". Developers use camelCase for variables and functions in JavaScript, Java, and many other languages. It differs from PascalCase (all words capitalized, including the first) and snake_case (words separated by underscores).

Related tools

Back to Glossary

People Also Used