In this chapter, you learned all about Angular pipes. Angular pipes are very useful in transforming the data in the view template. Angular pipes are the modernized version of filters available in Angular 1.x.
There are many useful built-in pipe operators we can use easily in our templates. You learned about built-in pipes as well as created custom user-defined pipes in this chapter.
When working with numbers, we can make use of DatePipe, DecimalPipe, and CurrencyPipe. When working with strings exclusively, we can always use SlicePipe, LowercasePipe, and UppercasePipe.
We can use JSONPipe and asyncPipe when we are mostly dealing with server-side responses or making an async call and processing the response. We also covered passing parameters to the pipes and customizing according to the need of our apps.
We explored how to create and implement custom user-defined pipes...