首页 > 代码库 > 一个简易版的Function.prototype.bind实现

一个简易版的Function.prototype.bind实现

  重新看《JavaScript设计模式与开发实践》一书,第32页发现个简易版的Function.prototype.bind实现,非常容易理解,记录在这了。

    Function.prototype.bind = function (context) {
        var self = this;
        return function () {
            return self.apply(context, arguments);
        };
    };

    var obj = {
        name: ‘sven‘
    };
    var func = function () {
        console.log(‘前端架构师‘);
    }.bind(obj);
    func();

   原文也给了个完整版的实现,这儿就不写了。

一个简易版的Function.prototype.bind实现