From 43c2a38b80fbfe5f6fd6506c1567a64e03a9568b Mon Sep 17 00:00:00 2001 From: MeetJoshi0 <72245615+MeetJoshi0@users.noreply.github.com> Date: Thu, 8 Oct 2020 14:58:00 +0530 Subject: [PATCH] Boiler Plate code is edited with correct arguments the boiler plate was code was containing only two arguments : arr , fn "but thisArg was missing there for i edited it. --- exercises/implement_map_with_reduce/problem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/implement_map_with_reduce/problem.md b/exercises/implement_map_with_reduce/problem.md index 015030d..807c653 100644 --- a/exercises/implement_map_with_reduce/problem.md +++ b/exercises/implement_map_with_reduce/problem.md @@ -37,7 +37,7 @@ console.log(output) // => [2,4,6,8,10] ```js -function arrayMap(arr, fn) { +function arrayMap(arr, fn, thisArg) { //SOLUTION GOES HERE }