Skip to Content
Real World XML
book

Real World XML

by Steven Holzner
January 2003
Beginner to intermediate content levelBeginner to intermediate
1200 pages
23h 42m
English
Peachpit Press
Content preview from Real World XML

Creating while Loop Statements

There are other loops besides the for loop in JavaScript, such as the while loop. The while loop tests a condition each time the loop is executed. If the condition is true, it executes the code in the loop. Here's what this loop looks like in outline:

while (condition){
    code
}

For example, here's how you write the example we used in the discussion of for loops as a while loop:

Listing . ch06_09.html
 
<HTML>
     <HEAD>
        <TITLE>
            Using the while Statement
        </TITLE>
    </HEAD>

    <BODY>
        <CENTER>
            <H1>
                Using the while Statement
            </H1>
        </CENTER>

        <SCRIPT LANGUAGE = "JavaScript">
            var loopIndex = 0
					while(loopIndex < 10){
					loopIndex++
					document.writeln("The loop index value is " +
					loopIndex + "<BR>")
					}
        </SCRIPT>
    </BODY>
</HTML>

You can ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Inside XML

Inside XML

Steven Holzner
XML Hacks

XML Hacks

Michael Fitzgerald

Publisher Resources

ISBN: 0735712867Purchase book