Angular - RxJS Operators
Consider the following Angular RxJS code:
What will be the output logged to the console?
import { of, combineLatest } from 'rxjs';
const obs1 = of(3, 4);
const obs2 = of('X', 'Y');
combineLatest([obs1, obs2]).subscribe(console.log);What will be the output logged to the console?
