|
|
|
|
|
by monkeyfacebag
4799 days ago
|
|
> In those expressions, you have access to Javascript code Just to clarify, double curly expressions in Angular, {{ }}, are "JS-like", basically a subset of JS + filter syntax. One goal of the expression syntax is to prevent a lot of app logic being stuck into the template itself, so the subset of JS is fairly minimal, but this is by design. This also means that the expressions are not eval()'d. Instead, they are parsed with Angular's $parse service. See: http://docs.angularjs.org/guide/expression |
|