How does an Angular application work?
The benefit of Angular Framework
- Out of the box supported features, like routing, state Management, HTTP service, etc.
- Declarative UI
What is AOT Compilation
Explain Components, Modules, and Services in Angular
Component lifecycle hooks in Angular
What is the use of 'pure' flag in @pipe decorator
In the “@Pipe” decorator you can specify “pure” flag as true. This flag indicates that the pipe is not dependent on any outside or global state and is side effect free. This enables Angular to cache the outputs for all the input parameters the pipe has been invoked with and thus allows to reuse the values instead of recomputation. This can lead to a massive reduction in the duplicate operations performed in many cases thus hugely improving the performance.How can we improve the performance of an Angular application?