|
Strings |
<script>
<!--
var c = "champion"
var d = new String("Hello")
document.write( "<p> String : " + c )
document.write( "<p> Substring Method : " + c.substring(1,4) )
document.write( "<p> Substring Method : " + c.substring(5,8) )
document.write( "<p> c.strike()+"<p>" )
document.write( "CNN".link("http:/www.cnn.com") +"<p>")
document.write( "Green Text".fontcolor("green") +"<p>")
document.write( "SMALL LETTERS".toLowerCase() +"<p>" )
// -->
</script>
|
|
|