completed calculator exercise
This commit is contained in:
parent
707a589009
commit
def13a957b
|
@ -28,7 +28,7 @@ const factorial = function(myVariable) {
|
||||||
return (myVariable * factorial(myVariable - 1))
|
return (myVariable * factorial(myVariable - 1))
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
//
|
||||||
// Do not edit below this line
|
// Do not edit below this line
|
||||||
module.exports = {
|
module.exports = {
|
||||||
add,
|
add,
|
||||||
|
|
Loading…
Reference in New Issue