document.writeln()
|
|
Syntax |
document.writeln(value,....)
|
|
The writeln() method appends the comma-separated argument(s) (value) to the document as a string. |
The writeln() method appends a newline character to the document. |
If any of the arguments are not strings, they are converted to strings before being appended to the document. |
<html> <head><title>Movies</title></head> <script language="JavaScript"> <!--
document.writeln("<PRE>The title of this web page is called <u>"); document.writeln(document.title,"</u></PRE>"); -->
</script> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
|