We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fedbbe commit a2b6320Copy full SHA for a2b6320
Notes/Ep8.md
@@ -105,7 +105,8 @@ The Errors that occurs if no reference is available for access. Can occur when t
105
* Try using const wherever possible.
106
* If not, use let.
107
* Avoid var.
108
-* Declare all variables with let at the top to avoid errors to shrink temporal dead zone to zero.
+* Declare and initialize all variables with let to the top to avoid errors to shrink temporal dead zone window to zero.
109
110
+PS: If in any interview when asked "Are let and const hoisted?" explain fully about temporal deadzone and all the above concepts too
111
112
0 commit comments