“this” inside function call on another function

后端 未结 0 737
有刺的猬
有刺的猬 2020-12-12 20:32
    Function.prototype.bind = function (obj) {
      const self = this;
      console.log(this);
      return () => {
        return this.apply(obj, arguments);
          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题