1. Home
  2. Computing & Technology
  3. JavaScript

If

By Stephen Chapman, About.com

Definition: The if statement specifies a condition and one or two blocks of code. When the condition evaluates to anything other than false or zero the first block of code is run. If a second block of code is specified in an else clause then that block of code will run when the first block doesn't (ie when the condition evaluates to false or zero). If is a reserved word and cannot be used for anything other than declaring an if statement.
Examples:
if (a == b) break;
Explore JavaScript
About.com Special Features

Stay connected and entertained with reviews on tips on the latest HDTVs, cellphones and more. More >

Easy ways to connect two computers for networking purposes. More >

  1. Home
  2. Computing & Technology
  3. JavaScript

©2009 About.com, a part of The New York Times Company.

All rights reserved.