题解 | #柯里化#
柯里化
http://www.nowcoder.com/practice/bb78d69986794470969674a8b504ac00
{"css":"","js":"function curryIt(fn) {\n return function a(a){\n return function b(b){\n return function c(c){\n return fn(a,b,c)\n }\n }\n }\n}","html":"","libs":[]}
柯里化
http://www.nowcoder.com/practice/bb78d69986794470969674a8b504ac00
{"css":"","js":"function curryIt(fn) {\n return function a(a){\n return function b(b){\n return function c(c){\n return fn(a,b,c)\n }\n }\n }\n}","html":"","libs":[]}
相关推荐