Jan 17, 2022
Kind of, but with a slight twist. combineLatest() doesn’t wait for all observables to complete. Instead, it waits for all observables to emit first and then emits every time any combined observables emit.
Notice that the first emit isn’t until both observables have emitted. After that first emit, it emits any time either observable emits. I like RxMarbles because you can play with the diagrams and see how the operator changes. For example, if you drag the 2 before the A, you will get 2A as your first emit.