From fe1c4a241f12a0939d1e0977cec6504ccd67201f Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 29 Jun 2022 14:54:06 +0300 Subject: [PATCH] minor fixes --- 1-js/08-prototypes/04-prototype-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/08-prototypes/04-prototype-methods/article.md b/1-js/08-prototypes/04-prototype-methods/article.md index 4a76d682..71f118e1 100644 --- a/1-js/08-prototypes/04-prototype-methods/article.md +++ b/1-js/08-prototypes/04-prototype-methods/article.md @@ -220,4 +220,4 @@ alert(Object.keys(chineseDictionary)); // hello,bye These objects are used as dictionaries, to store any (possibly user-generated) keys. - Without explicitly `null` prototype, objects inherit built-in methods and `__proto__` getter/setter from `Object.prototype`, making corresponding keys "occupied" and potentially causing side effects. With `null` prototype objects are truly empty. + Normally, objects inherit built-in methods and `__proto__` getter/setter from `Object.prototype`, making corresponding keys "occupied" and potentially causing side effects. With `null` prototype, objects are truly empty.