We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 036cd30 commit 5b541ecCopy full SHA for 5b541ec
1 file changed
JavaScript/Objects/js-objects.md
@@ -283,8 +283,8 @@ console.log(response?.message); // undefined
283
284
Object properties can store a special configuration flags in addition to the value.<br>
285
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.
+**`writable`** – if `true`, the value can be changed, otherwise it’s read-only. <br>
+**`enumerable`** – if `true`, then listed in loops, otherwise not listed. <br>
288
**`configurable`** – if `true`, the property can be deleted and these attributes can be modified, otherwise not.
289
290
> All flags default to true
0 commit comments