I coded a dropdown with two option inside: english and french. But for each option I need to call a different function. My code is in HTML :
<select (click)="myFuncEnglish()">
<option value="EN">English</option>
<option value="FR">France</option>
</select>
And for Angular is:
myFuncEnglish() {
console.log('function called is english');
}`
Can you help me please to know how can I code different function for the different options, and to display when I click on french "function called is french", and when I click on english "function called is english".