Update article.md

One redundant 'here' here
This commit is contained in:
martynov-94 2021-01-08 09:59:17 +03:00 committed by GitHub
parent 32518b7e76
commit 2229a48957
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -247,7 +247,7 @@ The call to `mul.bind(null, 2)` creates a new function `double` that passes call
That's called [partial function application](https://en.wikipedia.org/wiki/Partial_application) -- we create a new function by fixing some parameters of the existing one. That's called [partial function application](https://en.wikipedia.org/wiki/Partial_application) -- we create a new function by fixing some parameters of the existing one.
Please note that here we actually don't use `this` here. But `bind` requires it, so we must put in something like `null`. Please note that we actually don't use `this` here. But `bind` requires it, so we must put in something like `null`.
The function `triple` in the code below triples the value: The function `triple` in the code below triples the value: