美文网首页
Function.prototype.bind 典型例子

Function.prototype.bind 典型例子

作者: 彭惠康 | 来源:发表于2019-02-25 17:35 被阅读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

相关文章

网友评论

      本文标题:Function.prototype.bind 典型例子

      本文链接:https://www.haomeiwen.com/subject/dcwgyqtx.html