首页 > 代码库 > Function.prototype.bind 简介
Function.prototype.bind 简介
bind可以解决两种问题:
1. 可以改变一个函数的 this 指向
2. 可以实现偏函数等高阶功能
本文暂且讨论第一个功能
USE CASE
var foo = { x: 3}var bar = function(){ console.log(this.x);}bar(); // undefinedvar boundFunc = bar.bind(foo);boundFunc(); // 3
简易版实现方式
Function.prototype.bind = function (scope) { var fn = this; return function () { return fn.apply(scope); };}
参考链接:https://www.smashingmagazine.com/2014/01/understanding-javascript-function-prototype-bind/
Function.prototype.bind 简介
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。