1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 12:40:03 +02:00

docs: add pipe precedence content angular (#6292)

This commit is contained in:
J. Degand
2024-07-31 05:08:33 -04:00
committed by GitHub
parent a8f4d32a50
commit da4d141239

View File

@@ -1 +1,14 @@
# Pipes Precedence
# Pipes Precedence
The pipe operator has a higher precedence than the JavaScript ternary operator.
You should always use parentheses to be sure Angular evaluates the expression as you intend.
```
(condition ? a : b) | pipe
```
Visit the following resources to learn more:
- [@article@Precedence](https://angular.dev/guide/pipes/precedence)
- [@article@What is the precedence between pipe and ternary operators?](https://iq.js.org/questions/angular/what-is-the-precedence-between-pipe-and-ternary-operators)