From ea71a1e8cd057ac3234fa7fe267c07f2b1027015 Mon Sep 17 00:00:00 2001 From: guimasi1 <143355576+guimasi1@users.noreply.github.com> Date: Tue, 17 Jun 2025 09:27:13 +0200 Subject: [PATCH] docs: remove incorrectly listed operators in "Supported operators" table (Expression Syntax Guide) (#62092) PR Close #62092 --- adev/src/content/guide/templates/expression-syntax.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/adev/src/content/guide/templates/expression-syntax.md b/adev/src/content/guide/templates/expression-syntax.md index a7eedc5dba5..9cccd660374 100644 --- a/adev/src/content/guide/templates/expression-syntax.md +++ b/adev/src/content/guide/templates/expression-syntax.md @@ -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` |