DEV Community

Discussion on: When is the last time you used `var`?

Collapse
 
ccleary00 profile image
Corey Cleary

I haven't used it in forever. 95% of the time now I use const. By making a concerted effort to avoid using let and the mutability it allows (not that const is truly immutable), it has made the code I write much, much cleaner and easier to reason about.