其他分享
首页 > 其他分享> > Function.prototype.bind()的用法

Function.prototype.bind()的用法

作者:互联网

const module = {
  x: 42,
  y: 39,
  getY: function() {
    return this.x + this.y
  },
  getX: function() {
    return this.x * this.y
  }
};

const unboundGetX = Promise.resolve(module.getX.bind(module)());
const unboundGetY = Promise.resolve(module.getY.bind(module)());

Promise.all([unboundGetX,unboundGetY]).then(val => {
	console.log(val);
})

//[1638, 81]

bind()方法创建一个新的函数,在bind()被调用时,这个新函数的this被指定为bind()的第一个参数,其余参数将作为一个新函数的参数使用

标签:Function,const,bind,module,getX,getY,Promise,prototype
来源: https://www.cnblogs.com/jia-95/p/14955745.html