17.10.2018 Views

Angular

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

}<br />

constructor(){<br />

this.users.push(new User('Narco', false));<br />

this.users.push(new User('Bombasto',false));<br />

this.users.push(new User('Celeritas', false));<br />

this.users.push(new User('Magneta', false));<br />

}<br />

export class User {<br />

firstName : string;<br />

active : boolean;<br />

changeButtonState(){<br />

this.active = !this.active;<br />

}<br />

constructor(_firstName :string, _active : boolean){<br />

this.firstName = _firstName;<br />

this.active = _active;<br />

}<br />

}<br />

GoalKicker.com – <strong>Angular</strong> 2 Notes for Professionals 156

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!