From 5e5fd18e2616445c8d2a7dcb2160fe78cd944d4a Mon Sep 17 00:00:00 2001 From: sapiensFactor Date: Sun, 14 May 2023 09:31:17 +0530 Subject: [PATCH] Fixed a typo in day 09 markdown file line:111 --- 09_Day_Higher_order_functions/09_day_higher_order_functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09_Day_Higher_order_functions/09_day_higher_order_functions.md b/09_Day_Higher_order_functions/09_day_higher_order_functions.md index 9aa6871..4233336 100644 --- a/09_Day_Higher_order_functions/09_day_higher_order_functions.md +++ b/09_Day_Higher_order_functions/09_day_higher_order_functions.md @@ -108,7 +108,7 @@ console.log(sumArray(numbers)) The above example can be simplified as follows: ```js -const numbers = [1, 2, 3, 4] +const numbers = [1, 2, 3, 4, 5] ​ const sumArray = arr => { let sum = 0