From def13a957b42a90060571d8d0b0a0258774c13ec Mon Sep 17 00:00:00 2001 From: Don Date: Tue, 26 Jul 2022 16:04:26 -0400 Subject: [PATCH] completed calculator exercise --- 08_calculator/calculator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08_calculator/calculator.js b/08_calculator/calculator.js index 67003dd..e6fecd7 100644 --- a/08_calculator/calculator.js +++ b/08_calculator/calculator.js @@ -28,7 +28,7 @@ const factorial = function(myVariable) { return (myVariable * factorial(myVariable - 1)) } }; - +// // Do not edit below this line module.exports = { add,