What is an Observable?
- Observable can be thought of like an data source.
- Observable is implemented in a way that it follows Observable pattern.
- Observer is the subscribe functionality where we handle the Observable in one of the three ways(hooks).
- Handle Normal Data.
- Handle Error.
- Handle Completion.
- We can execute our code when any of the above section is completed.