depends on what combining logic you need, and 90% ...
# rx
u
depends on what combining logic you need, and 90% of time you one just one emit, so you need take 1, and then its the same
r
Even with a
take(1)
they’re not the same. If one of the source observables emits twice before another emits the first time, then
zip()
will use the first emission and
combineLatest()
will use the second.
u
right, I meant take 1 on the argument observable