手写apply

let obj = {
  a:1,
  b:2
}

Function.prototype.myApply = function(content,arr){
  console.log(‘myApply‘);
  let _this = this;
  let sy = Symbol();
  content[sy] = _this;
  return content[sy](...arr);
}

function add(c,d,e){
  console.log(this.a + this.b + c + d + e);
}
add.myApply(obj,[2,4,1]);

手写apply

上一篇:CSS3+HTML5特效2 - 翻转效果


下一篇:overflow:hidden 你所不知道的事