Please send questions to st10@humboldt.edu .
<html>
<body>

<!--
// String examples - 
//    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 String examples!")

    var phrase = "Hello There"

    document.write("<br>")
    document.write( phrase.toUpperCase() )
    document.write("<br>")
    document.write( phrase.toLowerCase() )

    document.write("<br>")
    document.write( phrase.charAt(0) )
    document.write("<br>")
    document.write( phrase.indexOf("he") )
    document.write("<br>")
    document.write( phrase.indexOf("HE") )

    document.write("<br>")
    document.write( phrase.bold() )
    document.write("<br>")
    document.write( phrase.blink() )
    document.write("<br>")
    document.write( "Google link".link("http://www.google.com") )

</script>

</body>
</html>