Angular
Fundamentals of Angular - Displaying Data

Common Pipes

Mute
Current Time 0:00
/
Duration Time 0:00
Loaded: 0%
Progress: 0%
Stream TypeLIVE
Remaining Time -0:00
 

In this video...

You will learn about the common pipes that Angular implements.

None of these pipes will modify the source data, only the rendering of it.

These pipes are:

  • number - for formatting numbers
  • percent - for formatting percentages
  • titlecase - for changing text to title case
  • uppercase - for changing text to upper case
  • lowercase - for changing text to lower case
  • slice - for taking just a piece of an array, useful with the ngFor directive
  • json - for formatting javascript objects as json, primarily for debugging

Official documentation about pipes: https://angular.io/api/core/Pipe

 

I finished! On to the next chapter