Mega Code Archive

 
Categories / JavaScript Tutorial / Statement
 

Use or () in do-while condition

< html> <head> <title>A Simple Page</title> <script language="JavaScript"> <!-- do {     sometext = prompt("Enter some text","Type some text"); } while (sometext == "Type some text" || sometext == "" || sometext == null); alert(sometext); //  --> </script> </head> <body> </body> </html>