DEV Community

Discussion on: Do's and Don'ts for Javascript Newbies

Collapse
 
mudlabs profile image
Sam

I like using snake_case for variables. It improved readability by distinguishing them form camelCasedMethods.

And when it comes to let vs const, use const everywhere until you can't.