Observables are cold by default and should be subscribed to deliver the values. subscribe() function is useful to subscribe the observable and write the call back functions for each type of notification from observable.
Observables should be unsubscribed to avoid memory leaks. unsubscribe() is useful to unsubscribe observables.