Skip to content

Commit b333262

Browse files
authored
Add Scope
1 parent bce37a6 commit b333262

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@ console.log(multiply(5,10)) // 50
2323

2424
<a href="https://codepen.io/Bunlong/pen/QBgdJb" target="_blank">Edit on Codepen</a>
2525

26+
## Scope
27+
28+
* Global scope
29+
* Local Scope
30+
* Function scope
31+
* Block scope
32+
* Function hoisting and scopes
33+
* Functions do not have access to each other's scopes
34+
* Nested scopes
35+
2636
## Closure
2737

2838
Clousure is the functions that have access to the parent scope, even when the parent function has closed.

0 commit comments

Comments
 (0)