docs: remove incorrectly listed operators in "Supported operators" table (Expression Syntax Guide) (#62092)

PR Close #62092
This commit is contained in:
guimasi1 2025-06-17 09:27:13 +02:00 committed by Jessica Janiuk
parent 29223931da
commit ea71a1e8cd

View file

@ -17,7 +17,6 @@ Angular supports a subset of [literal values](https://developer.mozilla.org/en-U
| Array | `['Onion', 'Cheese', 'Garlic']` |
| null | `null` |
| Template string | `` `Hello ${name}` `` |
| Tagged template string | `` tag`Hello ${name}` `` |
### Unsupported literals
@ -64,9 +63,6 @@ Angular supports the following operators from standard JavaScript.
| Unary Negation | `-x` |
| Unary Plus | `+y` |
| Property Accessor | `person['name']` |
| typeof | `typeof 42` |
| void | `void 1` |
| in | `'model' in car` |
| Assignment | `a = b` |
| Addition Assignment | `a += b` |
| Subtraction Assignment | `a -= b` |