We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2b08a0 commit f53a7f6Copy full SHA for f53a7f6
docs/content/guide/expression.ngdoc
@@ -35,7 +35,9 @@ Angular expressions are like JavaScript expressions with the following differenc
35
* **No RegExp Creation With Literal Notation:** You cannot create regular expressions
36
in an Angular expression.
37
38
- * **No Comma And Void Operators:** You cannot use `,` or `void` in an Angular expression.
+ * **No Object Creation With New Operator:** You cannot use `new` operator in an Angular expression.
39
+
40
+ * **No Comma And Void Operators:** You cannot use `,` or `void` operators in an Angular expression.
41
42
* **Filters:** You can use {@link guide/filter filters} within expressions to format data before
43
displaying it.
0 commit comments