5.5.5 while..do statement
The while loop is used when you want the loop to execute and continue executing while the specified condition is true. It tests the condition at the beginning of the loop, itself if the condition is true it executes the statements within the body of the loop or else it terminates. <html> <body> <script type
more..