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()的第一个参数,其余参数将作为一个新函数的参数使用