One common scenario is to wait for a number of requests to finish before continuing. This can be accomplished using the forkJoin method.
In the following example, forkJoin is used to call two methods that return Observables. The callback specified in the .subscribe method will be called when both O...