Angular - RxJS and Observables Fundamentals
What will be logged to the console when this code runs?
import { of } from 'rxjs';
const numbers$ = of(10, 20, 30);
numbers$.subscribe(value => console.log(value));