Types of casing in programming



This content originally appeared on DEV Community and was authored by aryan015

note: for consistancy i will keep the same example.

1. camelCase

//userDate
//firstName

2. snake_case

//user_name
//first_name

3. PascalCase

//UserName
//FirstName

my linkedin


This content originally appeared on DEV Community and was authored by aryan015