标签: javascript parameters callback arguments currying
function a(fun) { } a(function(a, b, c) { return a + b + c; });
如何在函数a中访问有趣的参数及其计数?