do-while
Description
The do-while of Iterations for JS iteratess a loop until the condition is false.
It iterates at least once.
Syntax
do
{
code
}
while(condition);The do-while of Iterations for JS iteratess a loop until the condition is false.
It iterates at least once.
do
{
code
}
while(condition);