• 코드:
​x
 
1
<!DOCTYPE html>
2
<html lang="ko">
3
​
4
<head>
5
    <meta charset="UTF-8">
6
    <title>JavaScript Date Method</title>
7
</head>
8
​
9
<body>
10
​
11
    <h1>setFullYear() 메소드</h1>
12
​
13
    <script>
14
        var date = new Date();
15
        date.setFullYear(1982, 1, 19);  // 자바스크립트에서 2월은 1임.
16
        document.write(date.getFullYear() + "<br>");    // 1982
17
        document.write(date.getMonth() + "<br>");       // 1
18
        document.write(date.getDate() + "<br>");        // 19
19
        document.write(date);
20
    </script>
21
    
22
</body>
23
​
24
</html>