Frequently Asked Questions

What is camelCase?
camelCase joins words without spaces, capitalising each word except the first: 'helloWorld'. Widely used in JavaScript and other programming languages.
What is snake_case?
snake_case uses underscores between words, all lowercase: 'hello_world'. Common in Python, databases, and file names.
What is title case?
Title Case capitalises the first letter of every word: 'The Quick Brown Fox'. Commonly used for headings and titles.
What is the difference between PascalCase and camelCase?
Both join words without spaces. PascalCase capitalises every word including the first (HelloWorld), while camelCase keeps the first word lowercase (helloWorld).
Ad
Advertisement