//app.component.html<div *ngFor="let item of lists">{{item}}</div> //app.component.ts})export class AppComponent { title = 'my-homework'; lists:Array<string>=["html","css","js"];}