Code Smell 116 - Variables Declared With 'var'
TL;DR: Choose wisely your variable names, scope, and mutability.
Problems
Mutability
Readability
Solutions
Declare const all variables unless you need to change them
Context
Most languages don't need variable declarations.
Some other languages...
maximilianocontieri.com2 min read
Miki Szeles
Everything related to test automation
Thanks Maxi, I just started to use JavaScript, but it looks like it is time to change my variable declarations from var to let ๐