diff --git a/1-js/05-data-types/09-destructuring-assignment/article.md b/1-js/05-data-types/09-destructuring-assignment/article.md index d86574b0..50b68752 100644 --- a/1-js/05-data-types/09-destructuring-assignment/article.md +++ b/1-js/05-data-types/09-destructuring-assignment/article.md @@ -349,7 +349,7 @@ To show JavaScript that it's not a code block, we can make it a part of an expre let title, width, height; // okay now -*!*(*/!*{title, width, height}*!*)*/!* = {title: "Menu", width: 200, height: 100}; +*!*(*/!*{title, width, height} = {title: "Menu", width: 200, height: 100}*!*)*/!*; alert( title ); // Menu ```