Common Programming Notations

 

1. Camel Case (camelCase)

  • First word starts with lowercase, next words start with uppercase
  • Very common in JavaScript, Java
 

2. Pascal Case (PascalCase)

  • Every word starts with uppercase
  • Often used for classes or components

3. Snake Case (snake_case)

  • Words separated by underscores _
  • Common in Python 

4. Kebab Case (kebab-case)

  • Words separated by hyphens -
  • Used in URLs, CSS classes 

Comments

Popular posts from this blog

How to use reserved words in javascript?

What is Notation?