Skip to content

Commit 5b541ec

Browse files
committed
Update js-objects.md
1 parent 036cd30 commit 5b541ec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

JavaScript/Objects/js-objects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,8 @@ console.log(response?.message); // undefined
283283
284284
Object properties can store a special configuration flags in addition to the value.<br>
285285
286-
**`writable`** – if `true`, the value can be changed, otherwise it’s read-only.
287-
**`enumerable`** – if `true`, then listed in loops, otherwise not listed.
286+
**`writable`** – if `true`, the value can be changed, otherwise it’s read-only. <br>
287+
**`enumerable`** – if `true`, then listed in loops, otherwise not listed. <br>
288288
**`configurable`** – if `true`, the property can be deleted and these attributes can be modified, otherwise not.
289289
290290
> All flags default to true

0 commit comments

Comments
 (0)