Angular 2 by Examples

Revision as of 13:54, 8 July 2016 by Mhan (talk | contribs) (add ngFor to iterate through an array)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

ngFor to iterate through an array

import { Component } from '@angular/core';

@Component({
        selector: 'my-app',
        template: `
<ul>
        <li *ngFor="let name of names">Hello {{ name }}</li>
</ul>
`
})

export class AppComponent {
        names: string[];

        constructor() {
                this.names = ['Ari','Carlos','Felipe','Nate'];
        }
}