Answers for "how do you write a for-loop in angular? (ngfor)"

13

syntax for ngfor

<ul>
    <li *ngFor="let item of items; let i = index" [attr.data-index]="i">
        {{item}}
    </li>
</ul>
Posted by: Guest on February-26-2020

Code answers related to "how do you write a for-loop in angular? (ngfor)"

Browse Popular Code Answers by Language