Created
January 17, 2019 07:25
-
-
Save userkang/9fcc919d6749db63c613b88540aa6023 to your computer and use it in GitHub Desktop.
一直加下去
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function add() { | |
var sum = 0; | |
function add() { | |
for (var i=0; i<arguments.length; i++) { | |
sum += Number(arguments[i]); | |
} | |
return add; | |
} | |
add.valueOf = function valueOf(){ | |
return sum; | |
}; | |
return add.apply(null,arguments); | |
} | |
add(1,2)(4) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment