Angular tap() operator

tap() is an operator of rxjs library (used in Angular) which in my personnel view is very helpful when you are working with observables for side effects – which means doing something without affecting the the actual observable stream. Documentation says:- Used to perform side-effects for notifications from the source observable My definition :- tap() […]