模拟apply
2.模拟apply
Function.prototype.myapply = function(context = window, args){
if(this == Function.prototype){
return undefined;
}
context = context || window;
const fn = Symbol();
context[fn] = this;
if (Array.isArray(args)) {
result = context[fn](...args);
}else {
result = context[fn]();
}
delete context[fn]
return result
}