Answers for "using *ngfor"

7

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
2

ngfor

<td *ngFor="let col of options.cols;index as i">
                        {{item[i]}} //Angular solution
                </td>
Posted by: Guest on June-23-2021

Browse Popular Code Answers by Language