Angular - RxJS and Observables Fundamentals
What is wrong with this code snippet?
const subject = new Subject();
subject.next('hello');
subject.subscribe(value => console.log(value));