Someone in the group said to implement a method similar to the Add (1) (2) (3) invocation, the result is immediately answered:
- 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)); //6
- Console. Log(add(1) (2) (3) (4)); //10
First, a number to remember each time the calculated value, so use a closure, the value of X is remembered in TMP, the first call to add (), initialize the TMP, and the x is stored in the TMP chain, and then return to TMP to ensure that the second call is the TMP function, the subsequent calculation is called TMP, Because TMP is also the return itself, it is guaranteed that the second call is also called TMP, while the parameters passed in TMP are added to the x in the chain of action and paid to sum, thus guaranteeing the calculation;
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;
Excerpt from: http://www.css88.com/archives/5147#more-5147
JS implementation is similar to the method of the Add (1) (2) (3) Call mode