From 65128b2a6f40ec22346eeb31f1162a16e7626fff Mon Sep 17 00:00:00 2001 From: luc4leone Date: Thu, 18 Jul 2019 13:58:22 +0200 Subject: [PATCH] 'property values' instead of 'field' in code comment --- 1-js/04-object-basics/01-object/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/01-object/article.md b/1-js/04-object-basics/01-object/article.md index 98067043..55d82fb4 100644 --- a/1-js/04-object-basics/01-object/article.md +++ b/1-js/04-object-basics/01-object/article.md @@ -49,7 +49,7 @@ We can add, remove and read files from it any time. Property values are accessible using the dot notation: ```js -// get fields of the object: +// get property values of the object: alert( user.name ); // John alert( user.age ); // 30 ```