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` |