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.
1 parent 69bd4b5 commit 29db93eCopy full SHA for 29db93e
1-js/07-object-oriented-programming/01-property-descriptors/article.md
@@ -191,7 +191,7 @@ The non-configurable flag (`configurable:false`) is sometimes preset for built-i
191
192
A non-configurable property can not be deleted or altered with `defineProperty`.
193
194
-For instance, `Math.PI` is both read-only, non-enumerable and non-configurable:
+For instance, `Math.PI` is read-only, non-enumerable and non-configurable:
195
196
```js run
197
let descriptor = Object.getOwnPropertyDescriptor(Math, 'PI');
0 commit comments