Angular - Templates and Data Binding
Given this component code:
And this template:
What happens when the user types 'Hi' in the input box?
export class AppComponent {
message = 'Hello';
}And this template:
<input [(ngModel)]="message">
<p>{{ message }}</p>What happens when the user types 'Hi' in the input box?
