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