mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-18 09:23:55 +08:00
17 lines
418 B
JavaScript
17 lines
418 B
JavaScript
/*
|
|
author: Theepag
|
|
*/
|
|
export const factorialize = (num) => {
|
|
// Step 1. variable result to store num
|
|
let result = num
|
|
// If num = 0 OR 1, the factorial will return 1
|
|
if (num === 0 || num === 1) { return 1 }
|
|
// Step 2. WHILE loop
|
|
while (num > 1) {
|
|
num-- // decrement 1 at each iteration
|
|
result = result * num // or result = result * num;
|
|
}
|
|
// Step 3. Return the factorial
|
|
return result
|
|
}
|