mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 08:16:50 +08:00
merge: Add test case (#851)
* Add test case * minor fix * delete files * rename file
This commit is contained in:
18
Recursive/Factorial.js
Normal file
18
Recursive/Factorial.js
Normal file
@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @function Factorial
|
||||
* @description function to find factorial using recursion.
|
||||
* @param {Integer} n - The input integer
|
||||
* @return {Integer} - Factorial of n.
|
||||
* @see [Factorial](https://en.wikipedia.org/wiki/Factorial)
|
||||
* @example 5! = 1*2*3*4*5 = 120
|
||||
* @example 2! = 1*2 = 2
|
||||
*/
|
||||
|
||||
const factorial = (n) => {
|
||||
if (n === 0) {
|
||||
return 1
|
||||
}
|
||||
return n * factorial(n - 1)
|
||||
}
|
||||
|
||||
export { factorial }
|
Reference in New Issue
Block a user