What is a Do Until Loop?

Answer:

This is a loop function ... the loop will continue until something true happens.

example:

int i = 0;

do {

console.write(i + "< br />");

i++;

}while(i < 100);

This will loop 100 times.

First answer by Bmxdad. Last edit by Bmxdad. Contributor trust: 94 [recommend contributor recommended]. Question popularity: 3 [recommend question].