do_while-1

 

JavaScript do while loop is used to iterate over the statements, Here is the code for do while loop: do{ document.write(" Counter : " + count + "

"); count++; } while (count < 10); See the code snippet:

 
 
 
<!DOCTYPE html> <html> <head> <title>Welcome to LearnKode - A code learning platform</title> </head> <body> <script> var count = 0; document.write("Here is the start of loop: " + "<br />"); do{ document.write(" Counter : " + count + "<br />"); count++; } while (count < 10); document.write ("End of loop!"); </script> </body> </html>
Output