Angular - Templates and Data Binding
Consider this Angular template:
If the user types 'Anna', what will be the value of
<input (input)="updateName($event.target.value)">
<p>Name: {{name}}</p>
If the user types 'Anna', what will be the value of
name after typing?