Output
with Javascript : Document « Development « JavaScript DHTML






Output
with Javascript

 <?xml version"1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>JavaScript while statement</title> <script type="text/javascript"> var iCount = 0; var sNewLine = "<br />"; document.write("While loop is starting"); document.write(sNewLine); while(iCount < 10){ document.write("iCount = " + iCount); document.write(sNewLine); iCount++; } document.write("While loop completed"); </script> </head> <body> </body> </html> 








Related examples in the same category

1.Output HTML in JavaScript
2.Display info in a new page
3.Recursively reverse all nodes beneath Node n, and reverse Text nodes
4.Reverse the order of the children of Node (document)
5.Open a new document and add some text
6.Get element by name: getElementsByName()
7.Get a specified element using getElementById()
8.Title of a document
9.Referrer of a document (URL of the document)
10.Hide Email Address
11.Convert space to URL encode
12.document last Modified Property in Another Format
13.Checking document referrer
14.Make button (control) visible or invisible
15.Opening a New URL
16. HTML Page with Immediate Script Statements
17.Using document.write() on the Current Window
18.Using document.write() on Another Window
19.Methods and Properties of the Document Object
close