|
Microsoft® JScript if...else Statement |
Language Reference Version 1 |
Conditionally executes a group of statements, depending on the value of an expression.
if (condition)
statement1
[else
statement2]The if...else statement syntax has these parts:
Part Description condition A Boolean expression. If condition is null or undefined, condition is treated as false.
statement1 The statement to be executed if condition is true. Can be a compound statement. statement2 The statement to be executed if condition is false. Can be a compound statement.
It is generally good practice to enclose statement1 and statement2 in braces ({}) for clarity and to avoid inadvertent errors. In the following example, you may intend that the else be used with the first if statement, but it is used with the second one.Changing the code in the following manner eliminates any ambiguities:if (x == 5) if (y == 6) z = 17; else z = 20;if (x == 5) { if (y == 6) z = 17; } else z = 20;Similarly, if you want to add a statement to statement1, and you don't use braces, you can accidentally create an error:
In this case, there is a syntax error, as there is more than one statement between the if and else statements. Putting braces around the statements between the if and else is required.if (x == 5) z = 7; q = 42; else z = 19;
© 1997 by Microsoft Corporation. All rights reserved.
| file: /techref/inet/iis/jscript/htm/js758.htm, 4KB, , updated: 1997/9/30 03:45, local time: 2009/11/21 18:58,
38.107.191.101:LOG IN
|
| ©2009 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? Please DO link to this page! Digg it! <A HREF="http://piclist.com/techref/inet/iis/jscript/htm/js758.htm"> if...else Statement</A> |
| Did you find what you needed? |
|
Support the PICList by honoring its finest. |
Robotics nuts!Check out http://www.verinet.com/~dlc/ email: dlc@verinet.com... This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.