Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
if(condition1)
statements1
else if(condition2)
statements2
else if(condition3)
...
Hi,
(condition1) ? statement1 : (condition2) ? : statement2 : (condition3) ? ...