From 7b2b7f2e1ca426a986ca58a6834b6eab9f1fe369 Mon Sep 17 00:00:00 2001 From: Kamrul Islam Shahin <44506464+shahin-cuet@users.noreply.github.com> Date: Tue, 20 Oct 2020 01:25:59 +0600 Subject: [PATCH] fix typo --- 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 c8ab699..b94fe54 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 @@ -357,7 +357,7 @@ const scores = [ ] const scoresGreaterEighty = scores.filter((score) => score.score > 80) -console.log(scoresGreaterEight) +console.log(scoresGreaterEighty) ``` ```sh