as a php programmer i know that to display information on the screen i can use echo or print

but since i am new to javascript this is how you can show or display the text on the browser in your web page with javascript

<SCRIPT language="javascript" type="text/javascript">
<!--
document.write ("Wello Webune, Javascript is Cool!");
//-->
</SCRIPT>


so basically to show the output you use the document.write() function

the above sample code will ouput this on your broswer:

Wello Webune, Javascript is Cool!