String Interpolation

This allows us to output values into the html template. We use {{ }} to output the result of the JavaScript code inside the braces.

<p>{{ post.summary }}</p>

This also creates a Two-way binding as well.