We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 49ebe88 + 4489949 commit b2d69c1Copy full SHA for b2d69c1
1-js/07-object-properties/02-property-accessors/article.md
@@ -134,7 +134,7 @@ alert(user.fullName); // John Smith
134
for(let key in user) alert(key); // name, surname
135
```
136
137
-Please note once again that a property can be either an accessor (has `get/set` methods) or a data property (has a `value`), not both.
+Please note that a property can be either an accessor (has `get/set` methods) or a data property (has a `value`), not both.
138
139
If we try to supply both `get` and `value` in the same descriptor, there will be an error:
140
0 commit comments