completed calculator exercise

This commit is contained in:
Don 2022-07-26 16:04:26 -04:00
parent 707a589009
commit def13a957b
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ const factorial = function(myVariable) {
return (myVariable * factorial(myVariable - 1))
}
};
//
// Do not edit below this line
module.exports = {
add,