Changes

Jump to: navigation, search

JavaScript Flow Control and Looping

110 bytes added, 15:05, 23 April 2007
no edit summary
One of the most powerful features of JavaScript (and every other programming or scripting language for that matter) is the ability to build intelligence into your web pages. It is vital in constructing scripts to be able to have the script make decisions and repeat tasks until specified criteria are met. For example, if you are developing an e-commerce application you may want to repeatedly ask a user to enter a credit card number until a valid credit card number is entered. Alternatively, you may want your script to loop a specifc number of times through a task before moving on to the next part of the script. All of this logic and flow control is achieved using some very simple structures. These are:
* if statementsConditional Statements
** if statements** if ... else ... statements
* do ... while loopsLooping Statements
** do ... while loops** while ... do loops * switch Statements * label Statements * with Statements

Navigation menu