Please send questions to
st10@humboldt.edu .
<html>
<body>
<!--
// Array examples - part 2 -
// typed into the W3Schools JavaScript School Examples window
// during class on 9-7-06 (edited slightly afterwards before
// posting)
-->
<script type="text/javascript">
document.write("Hello 180 World!")
var days = new Array("mon", "tue", "wed",
"thu", "fri", "sat",
"sun")
document.write( "<br>" )
document.write( days.toString() )
document.write( "<br>" )
document.write( days )
</script>
</body>
</html>