You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Notes/3-Hoisting.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ Output:
58
58
> Error: x is not defined // note that not defined here and "undefined" in sample 2 are totally different.
59
59
60
60
- Not defined: We have not initialised the value for variable anywhere in the entire code and in memory space.
61
-
- Undefined:
61
+
- Undefined: It is a placeholder that is assigned to a variable by the Javascript Engine until the variable is assigned with some other value.
62
62
63
63
__Hoisting__ is a concept which enables us to extract values of variables and functions even before initialising/assigning value without getting *error*
0 commit comments