December 2017
Beginner
372 pages
10h 32m
English
Interpolation provides one-way binding between a component and a template. One-way binding means that the data flow happens only from the component property to the template tag it is associated with. These values do not get updated on the component side if there is any change in the template. Here are some examples of how we can use interpolation in our template:

Its corresponding component code is shown here:

As you can see, in the preceding example, there are multiple ways of implementing interpolation. All the four examples ...
Read now
Unlock full access