Table of Contents
Back Button
Back to Chapter
Control Statements
No items found.
Function & Events
No items found.
Array and its Types
No items found.
OOP : Object Oriented Programming
No items found.
Javascript Standards
No items found.
HTML DOM
No items found.
Javascript : Advanced 1
No items found.
Javascript : Advanced 2
No items found.
Additional JavaScript
No items found.

Practice Exercise

Question

Create a Program to find the factorial of a number using recursion.

Hint

Take a number input from the user By using Prompt.

Now create a function

Inside Function, check if the number is greater than 0 then use recursion (number - 1)

Return the Final Value after the multiplying all outputs.

Solution

function myFactorial(x) { if (x == 0) { return 1; } else { return x * myFactorial(x - 1); } } var num = prompt('Enter a positive number: '); if (num >= 0) { var result = myFactorial(num); console.log("The factorial of "+ num + " is " + result); }else { console.log('Enter a positive number.'); }
Ask queries
Contact Us on Whatsapp
Hi, How Can We Help You?