Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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 }}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #index #ngfor
ADD COMMENT
Topic
Name
3+9 =