DEV Community

Discussion on: Why don’t we use var anymore?

Collapse
 
codingsam profile image
Coding Sam

Actually, I don't use let that often. Most times I just use const. :P

Collapse
 
tiffany profile image
tiff

I actually use let in the body of a for loop as it checks which names to bind then copies all the values to those names on each iteration.