From this Angular.io tutorial, I show:
where I do not unde
In simple words:
Its called a template reference variable (aka reference variable) since it is declared in template and often consumed in Javascript(typescript).
A template reference variable is similar to var id
(but not identical) which can be used to refer pretty much any DOM element (HTML element, Directive, Component) in template.
Template Reference variable are also available in Reactjs.
In angular you can use #somename
or ref-somename
to declare a template reference variable.
So how do i use these TRV(Template Reference variable) that's when you should look into library documentation