Como o function.apply.bind funciona no código a seguir?
Entendo que uma matriz de [200.599] é retornada da promessa e a função de retorno de chamada dentro da propagação está sendo passada para Function.apply.bind, mas agora estou perdida. Como a matriz de [200.599] é dividida em x e y? Como exatamente o apply.bind funciona?
function getY(x) {
return new Promise( function(resolve,reject){
setTimeout( function(){
resolve( (3 * x) - 1 );
}, 100 );
} );
}
function foo(bar,baz) {
var x = bar * baz;
// return both promises
return [
Promise.resolve( x ),
getY( x )
];
}
function spread(fn) {
return Function.apply.bind( fn, null );
}
Promise.all(
foo( 10, 20 )
)
.then(
spread( function(x,y){
console.log( x, y ); // 200 599
} )
)