Pipes in Angular
Pipes are special tools for formatting values output through interpolation.
Let's look at the general algorithm for using pipes. Each pipe has a name, for example: UpperCasePipe. This pipe converts the string to uppercase. To use the pipe, you need to put the symbol | after the value you are interested in and write the name, discarding the suffix 'Pipes'. For example, like this:
<div>{{ name | uppercase }}</div>
In the following tutorials, we will explore what channels are available in Angular and how to use them.