diff --git a/1-js/04-object-basics/01-object/article.md b/1-js/04-object-basics/01-object/article.md index 04f4f9e0..c103b862 100644 --- a/1-js/04-object-basics/01-object/article.md +++ b/1-js/04-object-basics/01-object/article.md @@ -83,7 +83,6 @@ let user = { ![](object-user-props.png) -````smart header="Trailing comma" The last property in the list may end with a comma: ```js let user = { @@ -92,7 +91,6 @@ let user = { } ``` That is called a "trailing" or "hanging" comma. Makes it easier to add/remove/move around properties, because all lines become alike. -```` ## Square brackets