Interpolation and Template Expressions


Interpolation

Current customer: {{ currentCustomer }}

{{ title }}

item

Evaluating template expressions

Simple evaluation (to a string):

The sum of 1 + 1 is {{ 1 + 1 }}.

Evaluates using a method (also evaluates to a string):

The sum of 1 + 1 is not {{ 1 + 1 + getVal() }}.


Expression Context

Component context, properties of app.component.ts:

{{ recommended }}

item 2

Template context, template input variables (let customer):

Template context: template reference variables (#customerInput):