Function.prototype.bind 典型例子

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

你可能感兴趣的:(Function.prototype.bind 典型例子)