mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
Update calculator.js
This commit is contained in:
@@ -19,9 +19,20 @@ function power(a, b) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function factorial(n) {
|
function factorial(n) {
|
||||||
|
if (n == 0) return 1;
|
||||||
|
let product = 1;
|
||||||
|
for (let i = n; i > 0; i--) {
|
||||||
|
product *= i;
|
||||||
|
}
|
||||||
|
return product;
|
||||||
|
}
|
||||||
|
|
||||||
|
// This is another implementation of Factorial that uses recursion
|
||||||
|
// THANKS to @ThirtyThreeB!
|
||||||
|
function recursiveFactorial(n) {
|
||||||
if (n===0){
|
if (n===0){
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
return n * factorial (n-1);
|
return n * factorial (n-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user