Processes an if-then-else built-in function call. For example, if(cond) thenExpr else elseExpr and if(cond) thenExpr. The arguments will be either [cond, thenExpr] or [cond, thenExpr, elseExpr].
if(cond) thenExpr else elseExpr
if(cond) thenExpr
[cond, thenExpr]
[cond, thenExpr, elseExpr]
Processes an if-then-else built-in function call. For example,
if(cond) thenExpr else elseExprandif(cond) thenExpr. The arguments will be either[cond, thenExpr]or[cond, thenExpr, elseExpr].