-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path32.scope_closures.js
More file actions
252 lines (135 loc) · 3.02 KB
/
Copy path32.scope_closures.js
File metadata and controls
252 lines (135 loc) · 3.02 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
/*
Closure:
Closure is when a function is able to remember and access its lexical
scope even when that function is executing outside its lexical scope - YDKJS
*/
// // Example 136 - Basic Closure
//
// // // this is a simple code, plain old lexical scope
// // // closure here is invisible
// // function foo() {
// // var a = 2;
// //
// // function bar() {
// // console.log(a);
// // }
// //
// // bar();
// // }
// //
// //
// // foo();
//
//
//
//
//
// // but a slight modification would make 'closure' visible.
// function foo() {
// var a = 2;
//
// function bar() {
// console.log(a);
// }
//
// return bar; // instead of calling bar inside foo, we return bar
// }
//
//
// var baz = foo();
//
// baz(); // prints '2'
//
// // this is closure, as it remembers its lexical scope outside it's lexical scope.
// // the variable a can be accessed outside of foo() now.
// // bar() is referenced by baz and it executed outside of its own lexical scope
//
// // Example 137 - Another closure - any way to execute a function outside its own lexical scope
// // is closure
// function foo() {
// var a = 2;
//
// function baz() {
// console.log(a);
// }
//
// bar(baz);
// }
//
//
// function bar(callback) {
// callback();
// }
//
//
//
// foo(); // prints '2'
//
// // foo calls bar() and pass a reference to baz(), then bar() prints baz() from the lexical scope outside of foo or baz
// // Example 138 - Closures and Loops
//
// // // Prints 6. 6 times?
// // // Because the closure is tied to the variable i, which changes after each iteration of the loop
// // // At the end of the loop, the value of i is 6
// // for(var i = 0; i <= 5; i++) {
// // setTimeout(function timer() {
// // console.log(i);
// // }, i * 1000);
// // }
//
//
//
//
//
// // // using IIFE doesn't work as well
// // for(var i = 0; i <= 5; i++) {
// // (function() {
// // setTimeout(function timer() {
// // console.log(i);
// // }, i * 1000);
// // })();
// // }
//
//
//
//
//
// // // this works
// // // j creates a variable owned to the lexical scope of IIFE
// // for(var i = 0; i <= 5; i++) {
// // (function() {
// // var j = i;
// // setTimeout(function timer() {
// // console.log(j);
// // }, i * 1000);
// // })();
// // }
//
//
//
//
//
//
//
// // this works as well
// for(var i = 0; i <= 5; i++) {
// (function(j) {
// setTimeout(function timer() {
// console.log(j);
// }, i * 1000);
// })(i);
// }
// // Example 139 - Closures and Loops with 'let' block scope
// for(var i = 0; i <= 5; i++) {
// let j = i;
//
// setTimeout(function timer() {
// console.log(j);
// }, i * 1000);
// }
// Example 140 - Closures and Loops with 'let' block scope
for(let i = 0; i <= 5; i++) {
setTimeout(function timer() {
console.log(i);
}, i * 1000);
}