0 votes
in Angular by

What will happen if you do not supply handler for the observer?

1 Answer

0 votes
by

Usually, an observer object can define any combination of next, error, and complete notification type handlers. If you don't supply a handler for a notification type, the observer just ignores notifications of that type.

...