so i want to know how to implement or exclusive in type script
my problem is I have two conditions a and b I want to enter if statement only if one of them correct and the other is not
what I have tried is this
if((a==false && b==true) || (a==true and b==false)){
DO SOMTHING }
but I want a more clean version