请点个赞,让更多人看到
function curryIt(fn) { return function fun(a){ if(fn.length===1)return fn(a) fn=fn.bind(this,a) return fun } }