From 84a94506f0c24bca2d59b16454b0ad1d87e5bf46 Mon Sep 17 00:00:00 2001 From: chialun622 Date: Thu, 15 Dec 2022 01:37:39 -0800 Subject: [PATCH] Update 09_day_higher_order_functions.md --- 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