We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d6126a commit 3bd1995Copy full SHA for 3bd1995
JavaScript/4-closure-recursive.js
@@ -16,6 +16,4 @@ const a3 = a2(3);
16
const a4 = a1(1);
17
const a5 = a2(10);
18
19
-console.log('--------');
20
-
21
add(1)(4)(8)(8);
JavaScript/6-functor.js
@@ -7,7 +7,7 @@ function add(x) {
7
return add(z);
8
};
9
f.map = function(fn) {
10
- fn(x);
+ return fn(x);
11
12
return f;
13
}
0 commit comments