mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-07 02:05:08 +08:00
Added while loop factorial
This commit is contained in:
20
Maths/WhileLoopFactorial.js
Normal file
20
Maths/WhileLoopFactorial.js
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
/*
|
||||||
|
author: Theepag
|
||||||
|
*/
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
//test
|
||||||
|
console.log(factorialize(5));
|
||||||
|
console.log(factorialize(4));
|
Reference in New Issue
Block a user