#Observable with several sources
4 messages · Page 1 of 1 (latest)
It depends of what you want to achieve. merge, combineLatest, forkJoin are good candidates but with different goals
Yeah... I tried to use merge but I thought it accepts an array of observable and not several ones. So it did not work at expected.
In the end, I used the good operator, but i called it like this merge([obs1,obs2]), instead of merge(obs1,obs2)...
So i thought it was not the good one.
Anyway, the subject which i'm listening to are from a user click.
So i don't know if merge is the best candidate. It might be combineLatest.
Thanks for your input!