function curry (fn) {
var args = Array.prototype.slice.call(arguments, 1);
return function () {
return fn.apply(this, args.concat(Array.prototype.slice.call(arguments, 0)));
}
}
*********************************
既然slice是Array原型里的方法,那为什么不写成Array.slice.call(arguments, 1);而写成Array.prototype.slice.call(arguments, 1);
李晓健
慕盖茨7302913