InterviewSolution
Saved Bookmarks
| 1. |
What is the use of Async pipe in Angular 6? |
|
Answer» The ASYNC pipe in Angular 6 is a special kind of IMPURE pipe which either waits for a PROMISE to resolve, display the data or subscribe to an OBSERVABLE displaying the emitted values. The Async pipe saves the BOILERPLATE into the component model. |
|