From 53046ad63734c34daab5192528d7c029f83e7ab1 Mon Sep 17 00:00:00 2001 From: Roland Manangan Date: Mon, 26 Nov 2018 18:54:40 -1000 Subject: [PATCH 1/2] Time to review functions with multiple parameters and pushing strings into arrays --- mission.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mission.js b/mission.js index 0895494..6207578 100644 --- a/mission.js +++ b/mission.js @@ -53,7 +53,10 @@ Console.log to see your result.*/ Create a function named plusOne that takes two parameters arr and str and will add a new string element into an array and will return the array. Console.log your result*/ - + function plusOne(arr,str){ + return "I forgot about this already"; + } + console.log(plusOne); /*Mission 6: Team Member: From 5affd77a9d9fc59b18f3d2b86f5e217f1e80eeba Mon Sep 17 00:00:00 2001 From: Roland Manangan Date: Mon, 26 Nov 2018 18:59:34 -1000 Subject: [PATCH 2/2] test --- mission.js | 1 + 1 file changed, 1 insertion(+) diff --git a/mission.js b/mission.js index 6207578..779b91a 100644 --- a/mission.js +++ b/mission.js @@ -57,6 +57,7 @@ Console.log to see your result.*/ return "I forgot about this already"; } console.log(plusOne); + console.log("hi"); /*Mission 6: Team Member: