Difference between revisions of "Javascript"

From Wikicliki
Jump to: navigation, search
(document.write)
Line 10: Line 10:
  
 
== Array ==
 
== Array ==
 +
 +
 +
== See Also ==
 +
 +
*http://www.comptechdoc.org/independent/web/cgi/javamanual/javadocument.html

Revision as of 16:41, 12 June 2008

I am a javascript noob. I have no idea what is going on.

document.write

document.write("Hello") // - prints Hello
var text="Hello"
document.write(''+text+'') // - prints Hello
var text="Hello"
document.write(''+text+'') // - prints Hello

Array

See Also