File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Heavily inspired by them as well:
8
8
9
9
## Table of Contents
10
10
11
- 1 . [ Types] ( #types )
11
+ 1 . [ Types] ( #types ) ho
12
12
1 . [ Objects] ( #objects )
13
13
1 . [ Arrays] ( #arrays )
14
14
1 . [ Strings] ( #strings )
@@ -631,7 +631,7 @@ Heavily inspired by them as well:
631
631
}
632
632
` ` `
633
633
634
- - Anonymous function expressions hoist their variable name , but not the function assignment.
634
+ - Anonymous function expressions hoist their variable declaration , but not the function assignment.
635
635
636
636
` ` ` javascript
637
637
function example () {
@@ -645,7 +645,7 @@ Heavily inspired by them as well:
645
645
}
646
646
` ` `
647
647
648
- - Named function expressions hoist the variable name, not the function name or the function body.
648
+ - Named function expressions hoist the variable declaration, but neither the function declaration nor the function body.
649
649
650
650
` ` ` javascript
651
651
function example () {
You can’t perform that action at this time.
0 commit comments