Microsoft® JScript ?: Operator |
Language Reference Version 1 |
Executes one of two statements depending on a condition.
test ? statement1 : statement2The ?: operator syntax has these parts:
Part Description test Any Boolean expression. statement1 A statement executed if test is true. May be a compound statement. statement2 A statement executed if test is false. May be a compound statement.
The ?: operator is a shortcut for an if...else statement. It is typically used as part of a larger expression where an if...else statement would be awkward. For example:The example creates a string containing "Good evening." if it is after 6pm. The equivalent code using an if...else statement would look as follows:var now = new Date(); greeting = "Good" + (now.getHours() > 17) ? " evening." : " day.";var now = new Date(); greeting = "Good"; if (now.getHours() > 17) greeting += " evening."; else greeting += " day.";
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/language/jscript/js639.htm, 3KB, , updated: 1997/9/30 03:44, local time: 2024/10/31 23:36,
18.226.164.216:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.ecomorder.com/Techref/language/jscript/js639.htm"> ?: Operator</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.