Angular - RxJS and Observables Fundamentals
Given this code snippet:
What will be the console output?
const obs$ = of(1, 2, 3);
obs$.subscribe({
next: x => console.log(x),
error: err => console.error(err),
complete: () => console.log('Done')
});What will be the console output?
