1//for
2<div *ngFor='let [data] of [dataArray]; let i=index;'>
3 <h2> {{i}} {{data.title}} </h2>
4 <img src='{{data.image}}' />
5 </div>
6 //the data contained in an array will be displayed element by element
7 //similar to the function .map() in React
8