From 2b57bdafa84083c15a7fde365cd231b063bee702 Mon Sep 17 00:00:00 2001 From: Aniket Kudale Date: Tue, 5 Sep 2017 16:25:31 +0530 Subject: [PATCH] Corrected task 3 typo --- 1-js/04-object-basics/04-object-methods/3-why-this/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/04-object-methods/3-why-this/task.md b/1-js/04-object-basics/04-object-methods/3-why-this/task.md index 2b6e8cd1..f22de29c 100644 --- a/1-js/04-object-basics/04-object-methods/3-why-this/task.md +++ b/1-js/04-object-basics/04-object-methods/3-why-this/task.md @@ -4,7 +4,7 @@ importance: 3 # Explain the value of "this" -In the code above we intend to call `user.go()` method 4 times in a row. +In the code below we intend to call `user.go()` method 4 times in a row. But calls `(1)` and `(2)` works differently from `(3)` and `(4)`. Why?