Convert to camelCase
Instantly convert any text to camelCase format for JavaScript variables, React props, JSON keys, and more. Free developer tool.
Input
user profile settings
→
Output
userProfileSettings
0 words • 0 characters
What is camelCase?
camelCase is a naming convention where the first word is lowercase and each subsequent word starts with a capital letter, with no spaces or separators.
When to Use camelCase
- JavaScript variables -
const userName = "John" - React props -
onClick,onChange,className - JSON keys -
{"firstName": "John"} - TypeScript interfaces - property names
- Node.js variables - standard JS convention