Example of how use onClick on Angular
<button (click)="onClick()">Click Me</button
<li *ngFor="let hobby of hobbies; let i = index">{{i}}: {{hobby}}</li>
ngOnInit() {
this.name = 'John Doe';
this.hobbies = ['Write code', 'Watch movies'];
}
onClick(){
this.name = 'Raphael Balet';
this.hobbies.push('New Hobby');
}