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,