Get the latest value of an Observable and emit it immeditely
last() method will not be of any help here as it waits for the Observable to terminate to give you the last item emitted. Assuming that you do not have the control over the emitting observable you could simply create a BehaviorSubject and subscribe it to the observable that emits the data that you want … Read more