Skip to content

Commit 58bfa6f

Browse files
Update 1-js/07-object-properties/01-property-descriptors/article.md
Co-authored-by: Aleksandras <alex30955@aol.com>
1 parent 711f7ef commit 58bfa6f

File tree

1 file changed

+1
-1
lines changed
  • 1-js/07-object-properties/01-property-descriptors

1 file changed

+1
-1
lines changed

1-js/07-object-properties/01-property-descriptors/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ Object.defineProperty(user, "name", {
244244
user.name = "Pete"; // работает
245245
delete user.name; // Ошибка
246246
```
247-
А здесь мы делаем `user.name` "навечно запечатанной" константой, как встроенный `Math.PI`
247+
А здесь мы делаем `user.name` "навечно запечатанной" константой, как и встроенный `Math.PI`:
248248
```js run
249249
let user = {
250250
name: "John"

0 commit comments

Comments
 (0)