From 107fed11a751506929a0b3e378637a6c541522a0 Mon Sep 17 00:00:00 2001 From: Vim Shah Date: Mon, 19 Aug 2019 16:42:15 -0700 Subject: [PATCH] Update article.md Quick typo fix --- 1-js/05-data-types/10-destructuring-assignment/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/10-destructuring-assignment/article.md b/1-js/05-data-types/10-destructuring-assignment/article.md index 762e5a12..2f9633e3 100644 --- a/1-js/05-data-types/10-destructuring-assignment/article.md +++ b/1-js/05-data-types/10-destructuring-assignment/article.md @@ -428,7 +428,7 @@ In real-life, the problem is how to remember the order of arguments. Usually IDE Like this? ```js -// undefined where detauls values are fine +// undefined where default values are fine showMenu("My Menu", undefined, undefined, ["Item1", "Item2"]) ```