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 5965ae7 commit 997f392Copy full SHA for 997f392
1-js/99-js-misc/03-currying-partials/article.md
@@ -150,7 +150,7 @@ The result of `curry(func)` call is the wrapper `curried` that looks like this:
150
function curried(...args) {
151
if (args.length >= func.length) { // (1)
152
return func.apply(this, args);
153
- } else return curried.bind(this, ...args);
+ } else return curried.bind(this, ...args); // (2)
154
};
155
```
156
0 commit comments