JS implementation is similar to the general method of the Add (1) (2) (3) Invocation mode

Source: Internet
Author: User

var add = function (a) {return function (b) {return function (c) {return a+b+c;    }; };}; Add (1) (2) (3); 6

That's right! If Add (1) (2) (3) (4) Such 4 calls, then this certainly does not apply.

This is analogous to executing a function that returns the value of the function itself:

function add (x)  {    var  sum = x;    var tmp = function  (y)  {         sum = sum + y;         return tmp;    };    tmp.toString =  function  ()  {        return sum;     };    return tmp;} Console.log (Add (1) (2) (3));   //6console.log (Add (1) (2) (3) (4));    //10 

But after the completion of the calculation or return to the TMP function, so that we can not get the results of the calculation, we need the result is a calculated number then what to do, first of all to know JavaScript, print and add calculation, will call the ToString or valueof function, respectively, So we rewrite TMP's ToString and valueof methods, returning the value of sum;


JS implementation is similar to the general method of the Add (1) (2) (3) Invocation mode

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.