Question: I have an Angular component with observable (BehaviourSubject) set as a class member. At some point I subscribe to it. The question is: should I unsubscribe from it in ngOnDestroy() or not? It’s unclear since the lifetime of observable ...

Question: I have an Angular Service that defines a public Subject. Later under some condition, the service will call .next() on this Subject. In addition, I have an Angular component that .subscribe() to this Subject in it’s ngOnInit() method, and ...