'property values' instead of 'field' in code comment

This commit is contained in:
luc4leone 2019-07-18 13:58:22 +02:00
parent cf6e1725f2
commit 65128b2a6f

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