Relation of temporal dead zone with var keyword .
The Temporal Dead Zone (TDZ) only applies to variables declared with let and const keywords in JavaScript, and not to variables declared with var.
In JavaScript, variables declared with var are hoisted to the top of their respective scopes and are in...
rudraprasadmohapatra.hashnode.dev1 min read