doublemetal
2013. 8. 2. 21:24
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<script type="text/javascript">
var var1 = 50 + "";
var testText = "재미있는 " + "자바스크립트";
document.write("메시지 : " + testText + "<br/>");
document.write("var1 변수의 값 : " + var1 + "<br/>");
</script>
</head>
<body>
</body>
</html>