boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

JavaScript do while loop Statement Example

Updated on     Kisan Patel

The do-while loop is similar to the while loop, the only difference is that the do… while loop executes at least once and then repeat till the specified condition is true.

The syntax of do…while is

do
{
  ....
} while (condition)

The following JavaScript illustrates use of do…while

counter = 1;
do {
   document.write("This statement number: " + counter);
   document.write("<br/>");
   counter++;
} while (counter <= 5);

See the Pen XbQebr by Kisan (@pka246) on CodePen.


JavaScript

Leave a Reply