Pipes transform data for display directly in templates, using the | operator. They let you format values (dates, currency, text) without changing the underlying data or writing transformation logic in the component.
Using built-in pipes
{{ today | date:'longDate' }}
{{ price | currency:'USD' }}
{{ name | uppercase }}
{{ ratio | percent }}
{{ bigNumber | number:'1.2-2' }}
{{ data | json }}
