标签:prototype bind pre arguments 前端 sel script blog self
重新看《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实现
标签:prototype bind pre arguments 前端 sel script blog self
原文地址:http://www.cnblogs.com/zhansu/p/6516025.html