Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 Date() 객체를 설명하시겠습니까?

<시간/>

날짜()

Date() 메서드는 현재 날짜를 제공하고 Date() 메서드를 사용하여 지정된 time.format의 날짜를 가져올 수 있습니다.

<html>
<body>
<script>
   var d = new Date();
   document.write(d);
</script>
</body>
</html>

출력

Thu May 16 2019 05:29:15 GMT+0530 (India Standard Time)

new Date()와 그 안에 있는 7개의 숫자를 사용하면 밀리초로도 날짜를 얻을 수 있습니다.

예시

<html>
<body>
<script>
   var d = new Date(2019, 9, 19, 5, 33, 30, 0);
   document.write(d);
</script>
</body>
</html>

출력

Sat Oct 19 2019 05:33:30 GMT+0530 (India Standard Time)

위의 예에서 우리는 년, 월, 일, 시, 분, 초, 밀리초 등을 한 줄로 제공한 날짜 내부에 있습니다.

또한 지정된 형식으로만 시간을 가져올 수도 있습니다. 예를 들어 년, 월, 일만 있는 시간은

예시

<html>
<body>
<script>
   var d = new Date(2019, 9, 19);
   document.write(d);
</script>
</body>
</html>

출력

Sat Oct 19 2019 00:00:00 GMT+0530 (India Standard Time)