Do ... while loop and output calculation result
<html> <head> <title>A Simple Page</title> <script language="JavaScript"> var x = 1 do { ++x; document.write(x+"<BR>"); }while (x < 10); </script> </head> <body> </body> </html>