File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ Angular expressions are like JavaScript expressions with the following differenc
27
27
* **Forgiving:** In JavaScript, trying to evaluate undefined properties generates `ReferenceError`
28
28
or `TypeError`. In Angular, expression evaluation is forgiving to `undefined` and `null`.
29
29
30
+ * **Filters:** You can use {@link guide/filter filters} within expressions to format data before
31
+ displaying it.
32
+
30
33
* **No Control Flow Statements:** You cannot use the following in an Angular expression:
31
34
conditionals, loops, or exceptions.
32
35
@@ -38,10 +41,10 @@ Angular expressions are like JavaScript expressions with the following differenc
38
41
39
42
* **No Object Creation With New Operator:** You cannot use `new` operator in an Angular expression.
40
43
41
- * **No Comma And Void Operators:** You cannot use `,` or `void` operators in an Angular expression.
44
+ * **No Bitwise, Comma, And Void Operators:** You cannot use
45
+ [Bitwise](https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators),
46
+ `,` or `void` operators in an Angular expression.
42
47
43
- * **Filters:** You can use {@link guide/filter filters} within expressions to format data before
44
- displaying it.
45
48
46
49
If you want to run more complex JavaScript code, you should make it a controller method and call
47
50
the method from your view. If you want to `eval()` an Angular expression yourself, use the
You can’t perform that action at this time.
0 commit comments