I\'m looking for a plain English explanation of what an Observable is in RXJS.
What it can be used for, and any useful explanations either video links, tutorials, us
It's like an event, by subscribing you are saying "let me know when this happens..".. so let's say you do a http request, you dont really know how long it will take, so the observable is just a placeholder or event you can subscribe to, which says when this happens, do something. That is, When this http request comes back, whenever that happens to be, read the value. The function you subscribe with will be run when it comes back.