i am using angular 5 and facing a problem. i want to submit (click) event and call two or multiple method one bye one. Please give me idea or solution so that i can submit a (click) event and call two or multiple method.
such as
.html file
<button (click)="abc(); bcde()"></button>
.ts file
first method
abc(){}
second method method
bcde(){}
is this a right way to do this. Please suggest me and help me to solve this
methods
fromabd()
like thisabc(){ this.bcde();this.cdef();}
– Lingerfelt