-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathclosures.js
More file actions
397 lines (341 loc) · 10.9 KB
/
closures.js
File metadata and controls
397 lines (341 loc) · 10.9 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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
// Challenge 1
function createFunction() {
const innerFunc = () => {
console.log('hello');
}
return innerFunc;
}
// UNCOMMENT THESE TO TEST YOUR WORK!
// const function1 = createFunction();
// function1();
// Challenge 2
function createFunctionPrinter(input) {
const printerFunc = () => {
console.log(input);
}
return printerFunc;
}
// UNCOMMENT THESE TO TEST YOUR WORK!
// const printSample = createFunctionPrinter('sample');
// printSample();
// const printHello = createFunctionPrinter('hello');
// printHello();
// Challenge 3
function outer() {
let counter = 0; // this variable is outside incrementCounter's scope
function incrementCounter () {
counter ++;
console.log('counter', counter);
}
return incrementCounter;
}
const willCounter = outer();
const jasCounter = outer();
// Uncomment each of these lines one by one.
// Before your do, guess what will be logged from each function call.
// willCounter(); // Logs 'counter 1'
// willCounter(); // Logs 'counter 2'
// willCounter(); // Logs 'counter 3'
// jasCounter(); // Logs 'counter 1'
// willCounter(); // Logs 'counter 4'
// Challenge 4
function addByX(x) {
const addBy = num => {
return num + x;
}
return addBy;
}
const addByTwo = addByX(2);
// now call addByTwo with an input of 1
// console.log(addByTwo(1)); // Logs 3
// now call addByTwo with an input of 2
// console.log(addByTwo(2)); // Logs 4
//--------------------------------------------------
// Extension
//--------------------------------------------------
// Challenge 5
function once(func) {
let counter = 0;
let onceVal;
const innerFunc = val => {
if (counter === 0) onceVal = func(val);
counter++;
return onceVal;
}
return innerFunc;
}
const onceFunc = once(addByTwo);
// UNCOMMENT THESE TO TEST YOUR WORK!
// console.log(onceFunc(4)); //should log 6
// console.log(onceFunc(10)); //should log 6
// console.log(onceFunc(9001)); //should log 6
// Challenge 6
function after(count, func) {
let counter = 0;
return (val) => {
if (++counter >= count) func(val);
}
}
const called = function() { console.log('hello') };
const afterCalled = after(3, called);
// afterCalled(); // -> nothing is printed
// afterCalled(); // -> nothing is printed
// afterCalled(); // -> 'hello' is printed
// afterCalled(); // -> 'hello' is printed
// Challenge 7
function delay(func, wait, ...args) {
setTimeout(() => func(...args), wait);
}
// Challenge 8
function rollCall(names) {
return () => {
if (!names.length) return console.log('Everyone accounted for');
console.log(names.shift());
}
}
// UNCOMMENT THESE TO TEST YOUR WORK!
// const rollCaller = rollCall(['Victoria', 'Juan', 'Ruth'])
// rollCaller() // -> Should log 'Victoria'
// rollCaller() // -> Should log 'Juan'
// rollCaller() // -> Should log 'Ruth'
// rollCaller() // -> Should log 'Everyone accounted for'
// CHALLENGE 9
function cycleIterator(array) {
let count = -1;
const innerFunc = () => {
if (count < array.length) {
count++;
}
if (count >= array.length) {
count = 0;
}
return array[count];
};
return innerFunc;
}
// /*** Uncomment these to check your work! ***/
// const threeDayWeekend = ['Fri', 'Sat', 'Sun'];
// const getDay = cycleIterator(threeDayWeekend);
// console.log(getDay()); // => should log 'Fri'
// console.log(getDay()); // => should log 'Sat'
// console.log(getDay()); // => should log 'Sun'
// console.log(getDay()); // => should log 'Fri'
// CHALLENGE 10
function defineFirstArg(func, arg) {
const innerFunc = (val) => {
return func(arg, val);
};
return innerFunc;
}
// /*** Uncomment these to check your work! ***/
// const subtract = function(big, small) { return big - small; };
// const subFrom20 = defineFirstArg(subtract, 20);
// console.log(subFrom20(5)); // => should log 15
// CHALLENGE 11
function dateStamp(func) {
const innerFunc = (val) => {
const d = new Date();
let o = {
date: d.toLocaleString(),
output: func(val),
};
return o;
};
return innerFunc;
}
// /*** Uncomment these to check your work! ***/
// const stampedMultBy2 = dateStamp(n => n * 2);
// console.log(stampedMultBy2(4)); // => should log { date: (today's date), output: 8 }
// console.log(stampedMultBy2(6)); // => should log { date: (today's date), output: 12 }
// CHALLENGE 12
function myReplace(str, ...pair) {
return str.replace(new RegExp(pair[0]), pair[1]);
}
function censor() {
let list = [];
const innerFunc = (a, b = "") => {
if (b !== "") {
list.push([a, b]);
} else {
return list.map((x) => myReplace(a, ...x));
}
};
return innerFunc;
}
// /*** Uncomment these to check your work! ***/
// const changeScene = censor();
// changeScene('dogs', 'cats');
// changeScene('quick', 'slow');
// console.log(changeScene('The quick, brown fox jumps over the lazy dogs.')); // => should log 'The slow, brown fox jumps over the lazy cats.'
// CHALLENGE 13
function createSecretHolder(secret) {
const o = {
getSecret() {
return secret;
},
setSecret(val) {
secret = val;
},
};
return o;
}
// /*** Uncomment these to check your work! ***/
// let obj = createSecretHolder(5)
// console.log(obj.getSecret()) // => returns 5
// obj.setSecret(2)
// console.log(obj.getSecret()) // => returns 2
// CHALLENGE 14
function callTimes() {
let count = 0;
const innerFunc = () => {
count++;
return count;
};
return innerFunc;
}
// /*** Uncomment these to check your work! ***/
// let myNewFunc1 = callTimes();
// let myNewFunc2 = callTimes();
// console.log(myNewFunc1()); // => 1
// console.log(myNewFunc1()); // => 2
// console.log(myNewFunc2()); // => 1
// console.log(myNewFunc2()); // => 2
// CHALLENGE 15
function russianRoulette(num) {
const innerFunc = () => {
let str = "";
switch (num) {
case 0:
return "reload to play again";
case 1:
num--;
return "bang";
default:
num--;
return "click";
}
};
return innerFunc;
}
// /*** Uncomment these to check your work! ***/
// const play = russianRoulette(3);
// console.log(play()); // => should log 'click'
// console.log(play()); // => should log 'click'
// console.log(play()); // => should log 'bang'
// console.log(play()); // => should log 'reload to play again'
// console.log(play()); // => should log 'reload to play again'
// CHALLENGE 16
function average() {
let list = [];
const innerFunc = (...args) => {
if (args.length !== 0) list.push(args[0]);
if (list.length > 0) return list.reduce((a, b) => a + b, 0) / list.length;
return 0;
};
return innerFunc;
}
// /*** Uncomment these to check your work! ***/
// const avgSoFar = average();
// console.log(avgSoFar()); // => should log 0
// console.log(avgSoFar(4)); // => should log 4
// console.log(avgSoFar(8)); // => should log 6
// console.log(avgSoFar()); // => should log 6
// console.log(avgSoFar(12)); // => should log 8
// console.log(avgSoFar()); // => should log 8
// CHALLENGE 17
function makeFuncTester(arrOfTests) {
const innerFunc = (func) => {
let res = arrOfTests
.map((x) => [func(x[0]), x[1]])
.filter((x) => x[0] === x[1]);
return arrOfTests.length === res.length;
};
return innerFunc;
}
// /*** Uncomment these to check your work! ***/
// const capLastTestCases = [];
// capLastTestCases.push(['hello', 'hellO']);
// capLastTestCases.push(['goodbye', 'goodbyE']);
// capLastTestCases.push(['howdy', 'howdY']);
// const shouldCapitalizeLast = makeFuncTester(capLastTestCases);
// const capLastAttempt1 = str => str.toUpperCase();
// const capLastAttempt2 = str => str.slice(0, -1) + str.slice(-1).toUpperCase();
// console.log(shouldCapitalizeLast(capLastAttempt1)); // => should log false
// console.log(shouldCapitalizeLast(capLastAttempt2)); // => should log true
// CHALLENGE 18
function makeHistory(limit) {
let history = [];
const innerFunc = (str) => {
if (str === "undo") {
if (history.length) {
let element = history.pop();
return element + " undone";
}
return "nothing to undo";
}
if (history.length >= limit) history.shift();
history.push(str);
return str + " done";
};
return innerFunc;
}
// /*** Uncomment these to check your work! ***/
// const myActions = makeHistory(2);
// console.log(myActions('jump')); // => should log 'jump done'
// console.log(myActions('undo')); // => should log 'jump undone'
// console.log(myActions('walk')); // => should log 'walk done'
// console.log(myActions('code')); // => should log 'code done'
// console.log(myActions('pose')); // => should log 'pose done'
// console.log(myActions('undo')); // => should log 'pose undone'
// console.log(myActions('undo')); // => should log 'code undone'
// console.log(myActions('undo')); // => should log 'nothing to undo'
// CHALLENGE 19
function blackjack(array) {
let count = -1;
const dealer = (card1, card2) => {
let sum = 0;
let busted = false;
const another = () => {
if (sum === 0) sum = card1 + card2;
else sum = sum + array[count];
if (sum <= 21) {
count++;
return sum;
} else {
if (busted) return "you are done";
busted = true;
return "bust";
}
};
return another;
};
return dealer;
}
// /*** Uncomment these to check your work! ***/
// /*** DEALER ***/
const deal = blackjack([2, 6, 1, 7, 11, 4, 6, 3, 9, 8, 9, 3, 10, 4, 5, 3, 7, 4, 9, 6, 10, 11]);
// /*** PLAYER 1 ***/
// const i_like_to_live_dangerously = deal(4, 5);
// console.log(i_like_to_live_dangerously()); // => should log 9
// console.log(i_like_to_live_dangerously()); // => should log 11
// console.log(i_like_to_live_dangerously()); // => should log 17
// console.log(i_like_to_live_dangerously()); // => should log 18
// console.log(i_like_to_live_dangerously()); // => should log 'bust'
// console.log(i_like_to_live_dangerously()); // => should log 'you are done!'
// console.log(i_like_to_live_dangerously()); // => should log 'you are done!'
// /*** BELOW LINES ARE FOR THE BONUS ***/
// /*** PLAYER 2 ***/
// const i_TOO_like_to_live_dangerously = deal(2, 2);
// console.log(i_TOO_like_to_live_dangerously()); // => should log 4
// console.log(i_TOO_like_to_live_dangerously()); // => should log 15
// console.log(i_TOO_like_to_live_dangerously()); // => should log 19
// console.log(i_TOO_like_to_live_dangerously()); // => should log 'bust'
// console.log(i_TOO_like_to_live_dangerously()); // => should log 'you are done!
// console.log(i_TOO_like_to_live_dangerously()); // => should log 'you are done!
// /*** PLAYER 3 ***/
// const i_ALSO_like_to_live_dangerously = deal(3, 7);
// console.log(i_ALSO_like_to_live_dangerously()); // => should log 10
// console.log(i_ALSO_like_to_live_dangerously()); // => should log 13
// console.log(i_ALSO_like_to_live_dangerously()); // => should log 'bust'
// console.log(i_ALSO_like_to_live_dangerously()); // => should log 'you are done!
// console.log(i_ALSO_like_to_live_dangerously()); // => should log 'you are done!