I\'m writing an app in Angular 2 and I want to execute several http requests and run a function on the responses.
In Angular 1, I would write something like $q
I'm not sure you'd want to use forkJoin/zip, especially considering combineLatest is easier to understand and will emit on every sub-stream event, whereas forkJoin basically samples on every sub-stream having emitted.
This might come to bite you later when you want to combine multi-item Observables down the road.