手写原生函数
手写 Function.prototype.call:
Function.prototype.myCall = function (context, ...args) {
context = context || window;
const fn = Symbol('fn');
context[fn] = this;
const result = context[fn](...args);
delete context[fn];
return result;
}

浙公网安备 33010602011771号