Date 객체는 JavaScript 언어에 내장된 데이터 유형입니다. Date 객체는 아래와 같이 새로운 Date( )로 생성됩니다.
Date 개체가 생성되면 여러 메서드를 사용하여 해당 개체에 대해 작업할 수 있습니다. 대부분의 방법을 사용하면 현지 시간이나 UTC(유니버설 또는 GMT) 시간을 사용하여 개체의 연도, 월, 일, 시, 분, 초 및 밀리초 필드를 가져오고 설정할 수 있습니다.
날짜 객체의 setMonth() 함수는 월을 나타내는 정수를 받아 현재 날짜의 월 값을 그 값으로 바꿉니다.
구문
구문은 다음과 같습니다.
dateObj.setMonth();
예시
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date('September 26, 89 5:4:25:96'); document.write("Current date: "+dateObj.toUTCString()); document.write("<br>"); dateObj.setMonth(9); document.write("Date after setting the month: "+dateObj.toUTCString()); </script> </body> </html>
출력
Current date: Mon, 25 Sep 1989 23:34:25 GMT Date after setting the month: Wed, 25 Oct 1989 23:34:25 GMT
예시
날짜 객체를 생성할 때 분을 언급하지 않았지만 여전히 setMonth() 함수를 사용하여 설정할 수 있습니다.
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date('1989 5:4:25:96'); dateObj.setMonth(8); document.write(dateObj.toString()); </script> </body> </html>
출력
Fri Sep 01 1989 05:04:25 GMT+0530 (India Standard Time)
예시
같은 방법으로 날짜 객체를 생성하는 동안 생성자에 값을 전달하지 않더라도 이 함수를 사용하여 setMonth()를 설정할 수 있으며 날짜, 연도 및 기타 값은 현재 날짜(및 시간)와 동일하게 유지됩니다. .
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date(); dateObj.setMonth(8); document.write(dateObj.toString()); </script> </body> </html>
출력
Tue Sep 18 2018 22:13:48 GMT+0530 (India Standard Time)