Angular - Template-Driven Forms
Given this component code:
And this template:
What will be displayed after the user types "Bob" in the input?
export class MyComponent {
name = 'Alice';
}And this template:
<input [(ngModel)]="name">
<p>Hello, {{name}}!</p>What will be displayed after the user types "Bob" in the input?
