for in angular 10 code example
Example 1: angular javascript for loop
content_copy
<h2>Products</h2>
<div *ngFor="let product of products">
</div>
Example 2: angular for loop
let array = [1,2,3];
for (let i = 0; i < array.length; i++) {
console.log(array[i]);
}