Back to Case Converter

camelCase Converter

Convert your text to camelCase instantly using our Case Converter tool. Perfect for JavaScript and TypeScript development.

What is camelCase?

camelCase is a naming convention widely used in programming where compound words or phrases are joined without spaces, with each word after the first starting with a capital letter. The first word begins with a lowercase letter, creating a visual "hump" pattern. It is the standard for JavaScript, TypeScript, and Java variables and functions.

Examples

Input

first name

camelCase

firstName
Variable declaration

Input

user_id

camelCase

userId
API response property

Input

get user by id

camelCase

getUserById
Function name