题解 | #修改 this 指向#

修改 this 指向

http://www.nowcoder.com/practice/a616b3de81b948fda9a92db7e86bd171

手写 bind

function bindThis(f, oTarget) {
  if (typeof f !== "function") throw new TypeError(f + " must be a function");
  let o = Object(oTarget);
  let args = [].slice.call(arguments, 2);
  let bound = function (...boundArgs) {
    let finalArgs = [...args, ...boundArgs];
    if (this instanceof bound) {
      if (f.prototype) {
        bound.prototype = Object.create(f.prototype);
      }
      let res = f.apply(this, args);
      if (typeof res === "object" || typeof res === "function") {
        return res;
      }
      return this;
    } else return f.apply(o, finalArgs);
  };
  return bound;
}
全部评论

相关推荐

03-11 16:05
运城学院 Java
程序员小白条:简历内容太多了,而且一段实习都没的情况下,写这么多,没啥说服力,反而让人觉得假
听劝,我这个简历该怎么改...
点赞 评论 收藏
分享
对空六翼:你真幸运,碰见这么好的人,不像我,秋招的时候被室友骗进cx了
实习好累,可以辞职全力准...
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务