Pricing
Learn
Code
Deploy
More
Factorial using Recursion in Javascript
139
2 years ago by
Narender Govindula
function fact(n) { return (n==0)? 1: n*(fact(n-1)) } fact(5)