How to put .ts variable into html method?

Hi guys, how do i do this in the correct way
(selectOption)="selectOption($event,{{variable}})"
the variable is taken from .ts page

Just like how you do it in the usual way

(selectOption)="selectOption(event,variable)"

for example (click)="popup('abc','def') in HTML and
popup(input1, input2) { alert(input1 + input2); } will give alert with message abcdef