Skip to content

Instantly share code, notes, and snippets.

View Harshakvarma's full-sized avatar
🎯
Focusing

Harshavardhan Kalidindi Harshakvarma

🎯
Focusing
View GitHub Profile
@Harshakvarma
Harshakvarma / README.md
Last active August 31, 2020 18:33
Javascript/Python converting case
@Harshakvarma
Harshakvarma / example.ts
Last active October 18, 2021 18:37
Case Styles: Camel, Pascal, Snake, and Kebab Case
var userLoginDetails = {userId: '53453455'} // function names (Camel Case)
var UserLoginDetails = {userId: '53453455'} // Class names (Pascal Case)
var user_login_details = {userId: '53453455'} // local constants (Snake Case)
var USER_LOGIN_DETAILS = {userId: '53453455'} // shared constants (All Caps Snake Case)
var value = 'user-login-details' // value (Kebab Case)