please dont rip this site
Microsoft® JScript™
if...else Statement
 Language Reference 
Version 1 

See Also


Description
Conditionally executes a group of statements, depending on the value of an expression.
Syntax
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.
Remarks
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.
if (x == 5)
  if (y == 6)
     z = 17;
else
  z = 20;
Changing the code in the following manner eliminates any ambiguities:
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:

if (x == 5)
  z = 7;
  q = 42;
else
  z = 19;
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.


© 1997 by Microsoft Corporation. All rights reserved.


file: /techref/inet/iis/jscript/htm/js758.htm, 4KB, , updated: 1997/9/30 04:45, local time: 2008/7/4 08:55,
TOP NEW HELP FIND: 
38.103.63.16:LOG IN
©2008 PLEASE DON'T RIP! DO: LINK / DIGG! / MAKE!

 ©2008 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://www.piclist.com/techref/inet/iis/jscript/htm/js758.htm"> if...else Statement</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be reviewed) Just type in the box and press the Post button. (HTML welcomed!): A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Did you find what you needed?

  PICList 2008 contributors:
o List host: MIT, Site host massmind.org, Top posters @20080704 Apptech, Jinx, Xiaofan Chen, David VanHorn, Alan B. Pearce, Bob Axtell, William \Chops\ Westfield, Cedric Chang, Gerhard Fiedler, bean,
* Page Editors: James Newton, David Cary, and YOU!
* Roman Black of Black Robotics donates from sales of Linistep stepper controller kits.
* Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters.
* Monthly Subscribers: Shultz Electronics, Larry Williams, David VanHorn, Bryan Whitehouse, Timothy Weber, David Challis. Peter Todd. on-going support is MOST appreciated!
* Contributors: Neil Narwani, David Cary, Elemer AM Nyiry, Philip J Taylor, Gus Calabrese of Omegadogs.com, Gautama Venegas, Patrick B. Murphy, William Chops Westfield, Peter Todd, Leslie Ellis
  'What can I do?' - SiCKO

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .