Implemented in | Navigator 4.0, Netscape Server 3.0 |
Syntax
do
statement
while (condition); Arguments
Example
In the following example, the do
loop iterates at least once and reiterates until i is no longer less than 5.
do {
i+=1
document.write(i);
while (i<5);
Last Updated: 10/31/97 12:29:59