Home > Article > Web Front-end > How to find the factorial of 5 in javascript
Javascript method to find the factorial of 5: 1. Use a while loop to find the factorial of 5, code such as "while(num){result *= num;num--;}"; 2. Use a function to find the factorial recursively The factorial of 5, the code is like "function factorial(){...}".
The operating environment of this article: windows7 system, javascript version 1.8.5, Dell G3 computer.
How to find the factorial of 5 in javascript?
JS implements the factorial operation of finding 5
Option 1: Using while loop
function factorial(num){ var result = 1; while(num){ result *= num; num--; } return result; } console.log(factorial(5))//120
Running result:
Option 2: Using function recursion
function factorial(num){ if(num <= 0){ return 1; }else{ return num*arguments.callee(num-1); } } console.log(factorial(5))//120
Running result:
[Recommendation: JavaScript advanced tutorial】
The above is the detailed content of How to find the factorial of 5 in javascript. For more information, please follow other related articles on the PHP Chinese website!