From 34a343d97d0316338e075b58fab1c03145389f35 Mon Sep 17 00:00:00 2001 From: Monster_01 <89054489+Charan-happy@users.noreply.github.com> Date: Fri, 17 Jun 2022 11:05:58 +0530 Subject: [PATCH] Update 09_day_higher_order_functions.md typo in line 88. instead of "where" "were" is there. Hence, it is updated --- 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..1aceba5 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 @@ -85,7 +85,7 @@ const higherOrder = n => { console.log(higherOrder(2)(3)(10)) ``` -Let us see were we use call back functions. For instance the _forEach_ method uses call back. +Let us see where we use call back functions. For instance the _forEach_ method uses call back. ```js const numbers = [1, 2, 3, 4, 5]