The factorial of JavaScript recursion

Source: Internet
Author: User

Factorial, that is, 5! = 5*4*3*2*1, first look at the traditional approach, using the while loop implementation:

function factorial (num) {  var result = num;  if (num<0) {    return-1;    Negative returns-1  }  if (num = = 0) {    return 1;    0 factorial is 1  }    while (num-->2) {    result = Result*num;      }  return result;}

The JavaScript recursive function calls itself through it, using recursion, the idea of factorial should be factorial (num) *factorial (num-1) *factorial (num-2) ... factorial (0), That is, each time the num-1 is called itself as a parameter:

function Factorial2 (num) {  if (num <0) {    return-1;  }  if (num = = 0) {    return 1;  }  Return num* (Factorial2 (num-1));}

  

The factorial of JavaScript recursion

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.