Observer is a behavioral design pattern . It specifies communication between objects: observable and observers. An observable is an object which notifies observers about the changes in its state. For example, a news agency can notify channels when it receives news.
Read moreWhat are observers in JavaScript?
Observer is an object which monitors or observes something continuously and it notifies after something is changed .
Read more