<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>String Function</title>
</head>
<body>
<script>
var data=new String("JavaScript Test");
document.write(data+"<br>");
document.write(data.length+"<br>");
document.write(data.toLowerCase()+"<br>");
document.write(data.bold()+"<br>");
document.write("다음".link('http://www.daum.net')+"<br><br>");
document.write(data.charAt(4)+"<br>");
document.write(data.substring(1,3)+"<br>");
document.write(data.substring(4)+"<br>");
document.write(data.replace("Test", "sample")+"<br>");
</script>
</body>
</html>