From f8c561c746f394507b6941c41faf60e723cd3634 Mon Sep 17 00:00:00 2001 From: pimonenkov <46793251+pimonenkov@users.noreply.github.com> Date: Wed, 4 Sep 2019 12:07:21 +0300 Subject: [PATCH] an -> a --- 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 3d83a224..00f144e1 100644 --- a/1-js/04-object-basics/04-object-methods/article.md +++ b/1-js/04-object-basics/04-object-methods/article.md @@ -220,7 +220,7 @@ In this case `this` is `undefined` in strict mode. If we try to access `this.nam In non-strict mode the value of `this` in such case will be the *global object* (`window` in a browser, we'll get to it later in the chapter [](info:global-object)). This is a historical behavior that `"use strict"` fixes. -Usually such call is an programming error. If there's `this` inside a function, it expects to be called in an object context. +Usually such call is a programming error. If there's `this` inside a function, it expects to be called in an object context. ```` ```smart header="The consequences of unbound `this`"