From e3063bb830cbf2dbf722a151eb78d185ad20f780 Mon Sep 17 00:00:00 2001 From: udaya <54870625+udaya28@users.noreply.github.com> Date: Tue, 25 May 2021 14:36:43 +0530 Subject: [PATCH] Update javascript-destructuring-assignment.md In Array destructuring example the skip value mentioned in the comment should be 9, not 12. --- blog_posts/javascript-destructuring-assignment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog_posts/javascript-destructuring-assignment.md b/blog_posts/javascript-destructuring-assignment.md index 1b98d1924..ab7048c3c 100644 --- a/blog_posts/javascript-destructuring-assignment.md +++ b/blog_posts/javascript-destructuring-assignment.md @@ -18,7 +18,7 @@ const nums = [ 3, 6, 9, 12, 15 ]; const [ k, // k = 3 l, // l = 6 - , // Skip a value (12) + , // Skip a value (9) ...n // n = [12, 15] ] = nums; ```