You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
Angular evaluates all expressions in double curly braces, converts the expression results to strings, and concatenates them with neighboring literal strings. Finally,
79
+
Angular evaluates all expressions in double curly braces, converts the expression results to strings, and links them with neighboring literal strings. Finally,
80
80
it assigns this composite interpolated result to an **element or directive property**.
81
81
82
-
We appear to be inserting the result between element tags and assigning to attributes.
82
+
We appear to be inserting the result between element tags and assigning it to attributes.
83
83
It's convenient to think so, and we rarely suffer for this mistake.
84
-
But it is not literally true. Interpolation is a special syntax that Angular converts into a
85
-
[property binding](#property-binding), as we'll explain below.
84
+
Though this is not exactly true. Interpolation is a special syntax that Angular converts into a
85
+
[property binding](#property-binding), and is explained below.
86
86
87
87
But first, let's take a closer look at template expressions and statements.
0 commit comments