Observables - sravanthimendu98/angular GitHub Wiki
BehaviorSubject is used for state management, maintaining the current value, and notifying subscribers of any changes.
Observables represent data streams that can be subscribed to for receiving updates.
Subscribers listen to the emitted values and handle them accordingly, making it easy to respond to changes in application state.