Answers for "ng for loop in angular"

0

angular loop

<li *ngFor="let a of fakeArray; let index = index">Something {{ index }}</li>
Posted by: Guest on March-31-2021
1

how to get index for ngfor

*ngFor="let item of items; index as i;" 
// OR
*ngFor="let item of items; let i = index;"
// i will be the index, starting from 0 
// and you can show it in the string interpolation with {{ i }}
Posted by: Guest on August-02-2020
-2

angular for loop

let array = [1,2,3];
for (let i = 0; i < array.length; i++) {
  console.log(array[i]);
}
Posted by: Guest on March-05-2020
-2

angular for loop

let array = [1,2,3];
array.forEach(function (value) {
  console.log(value);
});
Posted by: Guest on March-05-2020

Browse Popular Code Answers by Language