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/language/jscript/js758.htm, 4KB, , updated: 1997/9/30 02:45, local time: 2024/11/16 05:57,
3.142.136.229: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://linistepper.com/techref/language/jscript/js758.htm"> if...else Statement</A> |
Did you find what you needed? |