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>
<!--
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!