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