Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Explain different ways to achieve recursion in JavaScript

Recursion is a technique, where the Function call itself directly (or) indirectly.

There are three ways to refere a function itself.
a.   the function's name
b.   arguments.callee
c.   an in-scope variable that refers to the function

Using the functions name
HelloWorld.js
function factorial(n){
if(n 1){
return 1;
}

return n * factorial(n-1);
}

console.log(`Factorial of 5 is ${factorial(5)}`);

Output
Factorial of 5 is 120

Using arguments.callee
HelloWorld.js
function factorial(n){
if(n 1){
return 1;
}

return n * arguments.callee(n-1);
}

console.log(`Factorial of 5 is ${factorial(5)}`);


Using an in-scope variable that refers to the function
HelloWorld.js

var fact = function factorial(n){
if(n 1){
return 1;
}

return n * fact(n-1);
}

console.log(`Factorial of 5 is ${factorial(5)}`);



Previous                                                 Next                                                 Home


This post first appeared on Java Tutorial : Blog To Learn Java Programming, please read the originial post: here

Share the post

Explain different ways to achieve recursion in JavaScript

×

Subscribe to Java Tutorial : Blog To Learn Java Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×