Angular - Template-Driven Forms
Given this component template and setup, what will be the initial value shown in the input box?
Component code:
<input [(ngModel)]="username" />
Component code:
@Component({
standalone: true,
imports: [FormsModule]
})
export class MyComponent {
username = 'Alice';
}