Go to: Articles List

Hello World Example

<script language=Javascript>
   document.write("Hello World...");
</script>

The script tags tell the browser to interpret what is inside of these two tags as Javascript.

The document.write line simply tells the browser to print this line out to the browser.