From e95e0ba5d055d0c5c61827be3c7c366450f7aba7 Mon Sep 17 00:00:00 2001 From: CyberMew Date: Wed, 13 Feb 2019 15:14:25 +0800 Subject: [PATCH] Update article.md --- 1-js/05-data-types/09-destructuring-assignment/article.md | 2 ++ 1 file changed, 2 insertions(+) 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 7a48c89d..afea7eae 100644 --- a/1-js/05-data-types/09-destructuring-assignment/article.md +++ b/1-js/05-data-types/09-destructuring-assignment/article.md @@ -383,6 +383,8 @@ alert(item2); // Donut The whole `options` object except `extra` that was not mentioned, is assigned to corresponding variables. +Note that `size` and `items` itself is not destructured. + ![](destructuring-complex.png) Finally, we have `width`, `height`, `item1`, `item2` and `title` from the default value.