From 69e827839c54b6e9849ff0efa1a5969ef62e6627 Mon Sep 17 00:00:00 2001 From: michastubi Date: Fri, 7 Jun 2019 12:04:43 +0300 Subject: [PATCH] Missing invokeTwice Call In this Code Sample the Line: invokeTwice(myGrow); is missing. --- L3-objects-and-classes/56-using-bind.js | 1 + 1 file changed, 1 insertion(+) diff --git a/L3-objects-and-classes/56-using-bind.js b/L3-objects-and-classes/56-using-bind.js index bd309a0..d5bfba1 100644 --- a/L3-objects-and-classes/56-using-bind.js +++ b/L3-objects-and-classes/56-using-bind.js @@ -11,6 +11,7 @@ const dog = { }; const myGrow = dog.growOneYear.bind(dog); +invokeTwice(myGrow); dog.age; // 7