Answers for "ngfor in angular 10"

11

ngfor

<li *ngFor="let item of items; index as i; trackBy: trackByFn">...</li>
Posted by: Guest on March-31-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