Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path049-scope.js
More file actions
Latest commit
270 lines (202 loc) · 5.47 KB
/
Copy path049-scope.js
File metadata and controls
270 lines (202 loc) · 5.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
// SECTION 1: WHAT IS SCOPE?
// 1. Global Scope
constglobalVar="I'm global";
functionshowGlobal(){
console.log(globalVar);// Accessible
}
showGlobal();// "I'm global"
console.log(globalVar);// "I'm global"
// 2. Function Scope (Loca Scope)
functionmyFunction(){
constfunctionVar="I'm inside a function";
console.log(functionVar);// Accessible here
}
myFunction();// "I'm inside a function"
console.log(functionVar);// ReferenceError: functionVar is not defined
// 3. Block Scope
if(true){
constblockVar="I'm in a block";
console.log(blockVar);// Accessible here
}
console.log(blockVar);// ReferenceError: blockVar is not defined
// SECTION 2: NESTED SCOPE
constouterVar="Outer";
functionouter(){
constmiddleVar="Middle";
functioninner(){
constinnerVar="Inner";
console.log(outerVar);// Accessible
console.log(middleVar);// Accessible
console.log(innerVar);// Accessible
}
inner();
console.log(innerVar);// ReferenceError: innerVar is not defined
}
outer();
functionprocessData(){
constdata="Important data";
if(true){
consttempResult="Processing...";
for(leti=0;i<3;i++){
constloopVar=i*2;
console.log(data);// Accessible
console.log(tempResult);// Accessible
console.log(loopVar);// Accessible
}
console.log(loopVar);// ReferenceError
}
console.log(tempResult);// ReferenceError
}
processData();
// SECTION 3: LEXICAL SCOPE (also called static scope)
constname="Alice";
functiongreet(){
console.log(`Hello, ${name}`);
}
functionanotherFunction(){
constname="Bob";
greet();// What will this print?
}
anotherFunction();// "Hello, Alice"
// lexed or determined at write-time
functionouter(){
constouterVar="I'm from outer";
functioninner(){
console.log(outerVar);
}
returninner;
}
constmyFunction=outer();
myFunction();// "I'm from outer"
// SECTION 4: THE SCOPE CHAIN
constlevel1="Global";
functionfirstLevel(){
constlevel2="First";
functionsecondLevel(){
constlevel3="Second";
functionthirdLevel(){
console.log(level3);// Found in parent scope
console.log(level2);// Found in grandparent scope
console.log(level1);// Found in global scope
}
thirdLevel();
}
secondLevel();
}
firstLevel();
// "Second"
// "First"
// "Global"
// SECTION 5: VARIABLE SHADOWING
constmessage="Global message";
functionouter(){
constmessage="Outer message";
functioninner(){
constmessage="Inner message";
console.log(message);// Which one?
}
inner();
console.log(message);
}
outer();
// "Inner message"
// "Outer message"
console.log(message);// "Global message"
// SECTION 6: SCOPE CHAIN IN ACTION
functioncreateCounter(){
letcount=0;
return{
increment: function(){
count++;
console.log(count);
},
decrement: function(){
count--;
console.log(count);
},
getCount: function(){
returncount;
}
};
}
constcounter=createCounter();
counter.increment();// 1
counter.increment();// 2
counter.decrement();// 1
console.log(counter.getCount());// 1
console.log(counter.count);// undefined
// API configuration Example:
functioncreateAPI(baseURL){
constapiKey="secret-key-12345";
functionget(endpoint){
console.log(`GET ${baseURL}${endpoint} with key: ${apiKey}`);
}
functionpost(endpoint,data){
console.log(`POST ${baseURL}${endpoint} with key: ${apiKey}`);
console.log("Data:",data);
}
return{ get, post };
}
constapi=createAPI("https://api.example.com");
api.get("/users");// GET https://api.example.com/users with key: secret-key-12345
api.post("/users",{name: "John"});
// SECTION 7: SCOPE AND PERFORMANCE
functionlevel1(){
consta=1;
functionlevel2(){
constb=2;
functionlevel3(){
constc=3;
functionlevel4(){
// Accessing 'a' here requires traversing the entire chain
console.log(a+b+c);
}
level4();
}
level3();
}
level2();
}
// SECTION 8: COMMON PITFALLS
// Problem
// const functions = [];
// for (var i = 0; i < 3; i++) {
// functions.push(function() {
// console.log(i);
// });
// }
// functions[0](); // 3 (not 0!)
// functions[1](); // 3 (not 1!)
// functions[2](); // 3 (not 2!)
// Solution
// const functions = [];
// for (let i = 0; i < 3; i++) {
// functions.push(function() {
// console.log(i);
// });
// }
// functions[0](); // 0
// functions[1](); // 1
// functions[2](); // 2
// SECTION 9: SCOPE CHAIN VISUALIZATION
// - Global scope is the ground floor—everyone can access it
// - Each function creates a new floor
// - You can look down from your floor to see lower floors (outer scopes)
// - But you can't look up to see higher floors (inner scopes)
// - When you need something, you check your floor first, then go down floor by floor until you find it
// Ground Floor (Global)
constground="Ground floor";
functionfirstFloor(){
constfirst="First floor";
functionsecondFloor(){
constsecond="Second floor";
// From the second floor, I can see:
console.log(second);// My floor
console.log(first);// One floor down
console.log(ground);// Ground floor
}
secondFloor();
// From the first floor, I cannot see the second floor
console.log(second);// ReferenceError
}
firstFloor();