From 50bee3611143c8c4ef4fcd27bfdb65a66780f7ae Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 23 Mar 2019 02:14:21 +0300 Subject: [PATCH] improvements --- 1-js/06-advanced-functions/11-currying-partials/article.md | 4 ++++ 1 file changed, 4 insertions(+) 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); */!*