From e6ba1d89dc595dabf03ab56ffb481d81a908bd2c Mon Sep 17 00:00:00 2001 From: yankewei Date: Tue, 1 Dec 2020 17:52:36 +0800 Subject: [PATCH] Fix 09_day errors, should be equal 10 --- .../09_day_higher_order_functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 3c8a619..eff2fa1 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 @@ -105,7 +105,7 @@ console.log(sumArray(numbers)) ``` ```sh -15 +10 ``` The above example can be simplified as follows: @@ -125,7 +125,7 @@ console.log(sumArray(numbers)) ``` ```sh -15 +10 ``` ### setting time