Skip to content

Commit 50bee36

Browse files
committed
improvements
1 parent b8d63d3 commit 50bee36

File tree

1 file changed

+4
-0
lines changed
  • 1-js/06-advanced-functions/11-currying-partials

1 file changed

+4
-0
lines changed

1-js/06-advanced-functions/11-currying-partials/article.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ Please note that here we actually don't use `this` here. But `bind` requires it,
5050
The function `triple` in the code below triples the value:
5151

5252
```js run
53+
function mul(a, b) {
54+
return a * b;
55+
}
56+
5357
*!*
5458
let triple = mul.bind(null, 3);
5559
*/!*

0 commit comments

Comments
 (0)