My template has something like this:
<div *ngFor="let data of array">
<div #div></div>
</div>
is there a way for me to name each div differently using the #? And if so, how can I access them later in my TS file?
by the way, what are these # called? I cant search for them since I have now idea what these are (I just know what they're used for)
#div{{i}}
. – Commercial Suicide