The AsyncPipe in Angular: Three Things You Didn’t Know
Published in
6 min readNov 27, 2022
--
This will definitely help you while coding
You must have heard about Angular’s AsyncPipe
. We can use this convenient little pipe from within our templates so that we don’t have to bother with imperatively unwrapping data from Observables or Promises. It turns out that the AsyncPipe
is full of small marvels that aren’t always visible. We’d like to throw some light on how…