Let vs. Var in JavaScript
In JavaScript, let and var are often used interchangebly. However, there are some differences in how these variables are scoped.
let variables are only visible in their nearest enclosing block ({ ... }), not before or after that block.
let variables...
cometcode.hashnode.dev3 min read
Alysha Reinard
Python expert, learning new tech, new languages, new techniques
Nicely explained. Thanks!