docs(pipes): add information and statement titles (2)

This commit is contained in:
Sven Brodny
2024-02-16 22:31:36 +01:00
parent 5886a0f0c9
commit d8ed81be36

View File

@@ -9,6 +9,8 @@ sidebar:
order: 3 order: 3
--- ---
## Information
This is the first of three `@Pipe()` challenges, the goal of this series is to master **pipes** in Angular. This is the first of three `@Pipe()` challenges, the goal of this series is to master **pipes** in Angular.
Pipes are a very powerful way to transform data in your template. The difference between calling a function and a pipe is that pure pipes are memoized. So they won't be recalculated every change detection cycle if their inputs haven't changed. Pipes are a very powerful way to transform data in your template. The difference between calling a function and a pipe is that pure pipes are memoized. So they won't be recalculated every change detection cycle if their inputs haven't changed.