variable 변수
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>자바 스크립트 변수들</title>
<script type="text/javascript">
// window 내장함수 호출
var i = 100; // 숫자
var d = 3.14; // 숫자
var b = true; // 논리값
var s = "문자열"; // 문자
var s2 = '문자열2'; // 문자
var da = new Date(); // 객체
var f = function(){}; // 함수
var v;
var v2 = null;
document.write(i+"<br>");
document.write(d+"<br>");
document.write(b+"<br>");
document.write(s+"<br>");
document.write(s2+"<br>");
document.write(da+"<br>");
document.write(f+"<br>");
document.write(v+"<br>");
document.write(v2+"<br>");
</script>
</head>
<body>
</body>
</html>