Template reference variable tutorial code example
Example 1: template reference variable
<input type="text" #firstNameInput><input type="text" #lastNameInput>
Example 2: template reference variable
<button (click)="show(lastNameInput)">Show</button>