Main Journal Notes Code Rants Places
This is a summarized form of the JavaScript Tutorial.
For reference JavaScript specifications can be found here .
<script type="text/javascript"> <!-- document.write("Hello World!"); //--> </script>
var mycars=new Array("Saab","Volvo","BMW");
function intSort (a, b){ return a - b;}