Merge pull request #1163 from luc4leone/field

'property values' instead of 'field' in code comment
This commit is contained in:
Ilya Kantor 2019-07-18 15:23:04 +03:00 committed by GitHub
commit 369b0ba4e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
```