题解 | #修改 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;
}
全部评论

相关推荐

06-27 15:29
门头沟学院 Java
点赞 评论 收藏
分享
06-27 15:15
长安大学 Java
哈哈哈,你是老六:这种就是培训机构骗钱的
点赞 评论 收藏
分享
在debug的柠檬精...:好消息:现在HR挑三拣四 15年后 HR跪着求要简历 坏消息:被挑的是这代人,到时候求人的也是这代人。真好。
点赞 评论 收藏
分享
争当牛马还争不上
码农索隆:1.把简历改哈 2.猛投,狠投 3.把基础打牢 这样你在有机会的时候,才能抓住
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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