app.component.ts export class AppComponent { lists:Array<number> = [1,2,3];} app.component.html <div *ngFor="let item of lists"> {{item}}</div>