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 f426fd6 commit 48d233cCopy full SHA for 48d233c
1-js/06-advanced-functions/11-currying-partials/article.md
@@ -148,7 +148,7 @@ More advanced implementations of currying like [_.curry](https://lodash.com/docs
148
149
```js
150
function curry(f) {
151
- return function(..args) {
+ return function(...args) {
152
// if args.length == f.length (as many arguments as f has),
153
// then pass the call to f
154
// otherwise return a partial function that fixes args as first arguments
0 commit comments