Function.prototype.bind2 = function() { const args = [].slice(arguments) const t = args.shift() return () => { return this.apply(t, args) } }
← 实现深拷贝 防抖和节流 →