Use this tag for questions related to the Angular template reference variables. This is a concept from the (new) Angular Framework (not AngularJS)
A template reference variable is often a reference to a DOM element within a template. It can also be a reference to an Angular component or directive or a web component.
In order to create a template reference variable, use the hash symbol (#
) to declare a reference variable.
Example:
The following #phone
declares a phone variable on an element.
<input #phone placeholder="phone number">
Documentation: https://angular.io/guide/template-syntax#template-reference-variables--var-