Temporal Dead Zone
ES6 introduced two new ways to declare variables const and let, which mostly replaces the old practice of using var. Let's briefly look into the difference between these three ways.
var vs const vs let
varconstlet
DeclarationsGlobally scoped ...
shreyassoni.hashnode.dev3 min read