observeMultiple

an Array of Observables to use for this combined observation.

  • combines multiple Observables into a single Observable that can be observed.
  • Returns a new Observable that combines the Observables into a single Observable with the values of the given Observables in an Array with the same order as the Array of Observables.
this.observe(observeMultiple([observable1, observable2]), ([value1, value2]) => {
console.log(value1, value2);
});
""