From 389801a41e571819f13edf643c44ec8f9e7a6f9a Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Fri, 31 May 2019 20:07:38 +0300 Subject: [PATCH] minor --- 1-js/04-object-basics/04-object-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/04-object-methods/article.md b/1-js/04-object-basics/04-object-methods/article.md index 0252b795..9e38fae0 100644 --- a/1-js/04-object-basics/04-object-methods/article.md +++ b/1-js/04-object-basics/04-object-methods/article.md @@ -204,7 +204,7 @@ admin['f'](); // Admin (dot or square brackets access the method – doesn't mat The rule is simple: if `obj.f()` is called, then `this` is `obj` during the call of `f`. So it's either `user` or `admin` in the example above. -````smart header="Calling without an object: `this=undefined`" +````smart header="Calling without an object: `this == undefined`" We can even call the function without an object at all: ```js run