DEV Community

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

Collapse
 
daniel13rady profile image
Daniel Brady • Edited

The last time I used var was the last time I worked in a JavaScript code base in which I was the only contributor: anytime I try to use it in public, I get shot down by humans or an opinionated linter, or both 😞.

Ideally, I would use it more often. It's not a replacement for let or const, just like they aren't drop-in replacements for var or each other. I actually wrote about how I would prefer to use it here: