xxxxxxxxxx
let list = [1,2,3];
for (let i = 0; i < list.length; i++) {
console.log(list[i]);
}
xxxxxxxxxx
<li *ngFor="let a of fakeArray; let index = index">Something {{ index }}</li>
xxxxxxxxxx
content_copy
<h2>Products</h2>
<div *ngFor="let product of products">
</div>