Angular - Templates and Data Binding
Given the component code:
export class AppComponent { name = 'Alice'; age = 30; } What will be displayed by this template snippet? <p>Name: {{ name }}</p>
<p>Age next year: {{ age + 1 }}</p>