Web Teacher Software
web database
Javacript 
Tutorial
CGI tutorial
web 
database consulting
web database training
contact us about web 
database software
press
Hosted Database Solutions
webteacher home
Web Teacher Consulting

javascript tutorial graphic


Webteacher Software now offers

The LOOP.

The loop is a fantastic tool for any function that involves doing the same thing more than once. If I wanted to write my name 10 times, I would write a loop like this:

START LOOP (REPEAT 10 TIMES)
Write my Name
END OF LOOP

Of course that's not how I would type it. To create a loop I need to use the FOR statement. It is written like this:

for ( count=1; count <=10; count++ ) {
(stuff I want to do 10 times)
}

This statement would be read outloud:
"For count equals one, while count is less than or equal to ten, incrementing by one"

The FOR statement above will begin by creating a variable called count (you can choose any variable name). Initially, count will equal 1. The computer will perform whatever commands are between the curly bracket s, then upon reaching the end of the loop, count is incremented by 1, and a question is asked: IS COUNT LESS THAN OR EQUAL TO 10? If the answer is YES, then the loop repeats. If the answer is no, then the progr am exits the loop, and goes on with the program.

Please continue

Home | WebData - Web Database Software | Javascript | CGI | Consulting | Map Builder | Contact Us | The Press Room