JavaScript: Calculate the factorial of a number
JavaScript Function: Exercise-1 with Solution
Factorial Calculation
Write a JavaScript program to calculate the factorial of a number.
In mathematics, the factorial of a non-negative integer n, denoted by n!, is the product of all positive integers less than or equal to n. For example, 5! = 5 x 4 x 3 x 2 x 1 = 120
Visual Presentation:

Sample Solution-1:
JavaScript Code:
Output:
120
Flowchart:

Live Demo:
Sample Solution-2:
JavaScript Code:
Output:
120
Flowchart:

For more Practice: Solve these Related Problems:
- Write a JavaScript function that calculates the factorial of a number using tail recursion for optimization.
- Write a JavaScript function that computes the factorial iteratively without using recursion.
- Write a JavaScript function that calculates the factorial of a number and implements memoization to cache intermediate results.
- Write a JavaScript function that computes the factorial and throws a custom error for negative inputs.
Improve this sample solution and post your code through Disqus.
Previous: Javascript Recursion Functions Exercises
Next: Write a JavaScript program to find the greatest common divisor (gcd) of two positive numbers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics