11.5. WMLScript Conditional Operator - Choosing One Expression out of Two to Evaluate Depending on a Condition

The conditional operator chooses one expression out of two to evaluate. The choice depends on whether a condition is true or false. Its format is as follows:


(condition) ? expression1 : expression2;


If condition is true, the result of expression1 will be returned. If condition is false or invalid, the result of expression2 will be returned. For example:


wmlscript_variable = (x == "WMLScript Tutorial") ? 1 : 1+2;


If the x variable contains the string "WMLScript Tutorial", the conditional operator will assign 1 to the wmlscript_variable variable, otherwise the operator will assign 3 to it.


Previous Page Page 22 of 71 Next Page


Feedback Form (ExpandCollapse)

What do you think about this web page?






(Optional) Please provide us more details. For example, suppose you select option 2 above, can you tell us specifically what information is missing? You can also suggest anything that can help us improve this web page.

(Optional) Your name:

(Optional) Your email address:

Please enter again to confirm:

Due to the amount of messages we received, we may not be able to reply to all messages.

A button for going back to the top of this page