What is the purpose of `*ngFor` directive - amresh087/newronaRepos GitHub Wiki
-
We use Angular
*ngFor
directive in the template to display each item in the list. For example, here we can iterate over a list of users:The user variable in the<li *ngFor="let user of users"> {{ user }} </li>
*ngFor
double-quoted instruction is a template input variable.