From 0167b26ffc4ff9e163c5595bc6ce818fce5d646b Mon Sep 17 00:00:00 2001 From: James Kofi Myers <95756936+kinjames@users.noreply.github.com> Date: Wed, 3 May 2023 12:24:18 +0000 Subject: [PATCH] Update 11_day_destructuring_and_spreading.md --- .../11_day_destructuring_and_spreading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/11_Day_Destructuring_and_spreading/11_day_destructuring_and_spreading.md b/11_Day_Destructuring_and_spreading/11_day_destructuring_and_spreading.md index d4ffc34..8006523 100644 --- a/11_Day_Destructuring_and_spreading/11_day_destructuring_and_spreading.md +++ b/11_Day_Destructuring_and_spreading/11_day_destructuring_and_spreading.md @@ -93,7 +93,7 @@ console.log(backEnd) ["Node", "Express", "MongoDB"] ``` -If we like to skip on of the values in the array we use additional comma. The comma helps to omit the value at that specific index +If we like to skip one of the values in the array we use additional comma. The comma helps to omit the value at that specific index ```js const numbers = [1, 2, 3]