Event Binding
Event Binding ~20 mins
Event Binding
    <button (click)="onSave()"> Save </button>
    onSave(){
alert("Button onSave clicked");
}