Microsoft® JScript ?: Operator |
| Language Reference | |
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:
var now = new Date(); greeting = "Good" + (now.getHours() > 17) ? " evening." : " day.";The example creates a string containing "Good evening." if it is after 6pm. The equivalent code using an if...else statement would look like:var now = new Date(); greeting = "Good"; if (now.getHours() > 17) greeting += " evening."; else greeting += " day.";
file: /Techref/language/asp/js/153.htm, 2KB, , updated: 1996/11/22 10:11, local time: 2024/11/23 00:44,
3.147.76.183:LOG IN
|
©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/asp/js/153.htm"> Microsoft® JScript Language Reference </A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.