I need to know if there is a way to create HTML local variables programmatically.
I am developing a web app where I have an NgFor loop and I want to be able to assign a
You could stick it into the template interpolation since it handles expressions.
{{setLocalVariable(#elt)}} setLocalVariable(_title : string){ let var = do some stuff to _title; return var; }