diff --git a/1-js/06-advanced-functions/11-currying-partials/article.md b/1-js/06-advanced-functions/11-currying-partials/article.md index d7a89309..310e4830 100644 --- a/1-js/06-advanced-functions/11-currying-partials/article.md +++ b/1-js/06-advanced-functions/11-currying-partials/article.md @@ -50,6 +50,10 @@ Please note that here we actually don't use `this` here. But `bind` requires it, The function `triple` in the code below triples the value: ```js run +function mul(a, b) { + return a * b; +} + *!* let triple = mul.bind(null, 3); */!*