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