Function.prototype.bind 典型例子
2019-02-25 本文已影响0人
彭惠康
var module = {
x:10,
getX: function(){
return this.x
}
}
var unboundGetX = module.getX
console.log(unboundGetX()) // undefined
var boundGetX = unboundGetX.bind(module)
console.log(boundGetX()) // 10