Now we are going to write "Hellow World!!!" on the page using Javascript..

Type this code on your text editor and save it as a HTML document like "hellowWorld.html" or something else..
Then open it with your Internet Browser

<html>
<head>
<title>Write Hellow World!!! with Javascript</title>
</head>
<body>  

     <script language="javascript" type="text/javascript">
     document.write("Hellow World!!!");
     </script>


</body>
</html>

You will see the result like

Hellow World!!!

*********************...


Continue reading ...