What is camelCase?
camelCase is a naming convention where spaces and punctuation are removed, the first letter of the first word is lowercase, and the first letter of each subsequent word is capitalized (e.g., userProfileImageUrl).
Where is camelCase Used?
- JavaScript & TypeScript: Variables, object properties, and function names.
- Swift & Kotlin: Method names and property declarations.
- Java & C#: Local variables and method parameters.
- REST APIs: JSON payload keys.