let & const: A closer look
Feb 13, 2023 · 1 min read · ES6 changed the way we used variables in JS forever. It brought the sudden demise of var as the popular choice for declaring variables. let and const now allow variables to be truly block-scoped. The difference between let and const is pretty much fo...
Join discussion