제목 : 예제. string 객체(문자열 관련 처리)
<SCRIPT LANGUAGE="JavaScript">
<!--
test = "지금 쓰여진 문자열의 길이는?"
//※문자열의 길이 반환 : string(문자열)객체의 length속성
document.write(test + "<br>");
document.write("test 변수에 쓰여진 문자열의 문자 개수 : "+test.length);
document.write("<p>");
document.write(" BIG ".big() + "<BR>"); //<big>
document.write(" SMALL ".small() + "<BR>"); //<small>
document.write(" BLINK ".blink() + "<BR>"); // <blink)
document.write(" BOLD ".bold() + "<BR>"); // <b>
document.write(" FIX ".fixed() + "<BR>"); // <tt>
document.write(" ITALICS ".italics() + "<BR>"); //<i>
document.write(" STRIKE ".strike() + "<BR>"); //<s><strike>
document.write(" SUBSCRIPT ".sub() + "<BR>"); //<sub>
document.write(" SUPERSCRIPT ".sup() + "<BR>"); //<sup>
document.write(" FONTCOLOR = GREEN ".fontcolor("green") + "<BR>"); //<font color="green">
//document.write(" FONTCOLOR = BLUE ".fontcolor("blue") + "<BR>");
//document.write(" FONTCOLOR = RED ".fontcolor("red") + "<BR>");
document.write(" FONT SIZE 3 ".fontsize(3) + "<BR>"); //<font size="3">
//document.write(" FONT SIZE 4 ".fontsize(4) + "<BR>");
//document.write(" FONT SIZE 5 ".fontsize(5) + "<BR>");
document.write("<p>");
//<font color="blue"><blink><big>문자열</big></blink></font>
document.write("BIG/BLINK/BLUE".big().blink().fontcolor("blue")+"<BR>");
//document.write("ITALICS/STRIKE/RED".italics().strike().fontcolor("red")+"<BR>");
//document.write("FONT SIZE 3/BOLD".fontsize(3).bold()+"<BR>");
//document.write("FONT SIZE 5/STRIKE".fontsize(5).strike()+"<BR>");
document.write("<p>");
//-->
</SCRIPT>