From cb63921d2abe4b162dbcc843f285aa9e4f48890e Mon Sep 17 00:00:00 2001 From: strtw Date: Thu, 7 Sep 2017 10:37:23 -0700 Subject: [PATCH] Update recursionIntro.js --- recursion/recursionIntro.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recursion/recursionIntro.js b/recursion/recursionIntro.js index 2e72e55..9979fcd 100644 --- a/recursion/recursionIntro.js +++ b/recursion/recursionIntro.js @@ -6,6 +6,6 @@ //4. Write a function 'RecursiveExponent' that takes two arguments base, and expo, recursively returns exponent value of the base. -//5. Write a function 'recursiveMultiplier' that takes two arguments, 'arr and num', and multiplies each arr value into by num and returns an array of the values. +//5. Write a function 'recursiveMultiplier' that takes two arguments, 'arr and num', and multiplies each arr value by num and returns an array of the values. //6. Write a function 'recursiveReverse' that takes an array and uses recursion to return its contents in reverse