//就这些了呜呜呜 最后一题是个什么,答得也不好。 Function.prototype.mybind = function(context){ if(typeof this !== 'function'){ throw new TypeError('Error') } let _this = this let arg = [...arguments].slice(1) return function f(){ if(this instanceof f){ return new _this(...arg,...arguments) } else{ return _th...