Javascript之模拟实现
模拟实现call 1 2 3 4 5 6 7 8 9 10 11 12 Function.prototype.myCall = function(context) { // 判断调用call的函数(也就是this)是否是函数 if(typeof this === 'function') { throw new TypeError('Error') } context = context || window context.fn = this const args =