Is there any way to combine promises in AngularJS 2? In Angular 1, for instance, I would use $q.all to combine multiple requests into a single promise. Is there
$q.all
I recommend using Observables for Angular 2+ but in case you still need to use Promises you can use the following:
Promise.all( [ promise1, promise2, promise3 ] );