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

날짜에서 초/밀리초를 제거하고 ISO 문자열로 변환하시겠습니까?

<시간/>

먼저 현재 날짜를 구합시다 -

var currentDate = new Date();
console.log("The current date is as follows="+currentDate);

이제 setSeconds() −

를 사용하여 초/밀리초를 0으로 설정하여 제거하겠습니다.
currentDate.setSeconds(0,0);

toISOString()을 사용하여 ISO 문자열로 변환 -

currentDate.toISOString()

이제 출력이 포함된 전체 코드를 살펴보겠습니다 −

예시

var currentDate = new Date();
console.log("The current date is as follows="+currentDate);
currentDate.setSeconds(0,0);
console.log("After removing seconds from date, the new date is as
follows=");
console.log(currentDate.toISOString());
입니다.

위의 프로그램을 실행하려면 다음 명령을 사용해야 합니다 -

node fileName.js.

여기에서 내 파일 이름은 demo143.js입니다.

출력

이것은 다음과 같은 출력을 생성합니다 -

PS C:\Users\Amit\JavaScript-code> node demo143.js
The current date is as follows=Sat Aug 01 2020 18:20:09 GMT+0530 (India Standard Time)
After removing seconds from date, the new date is as follows=
2020-08-01T12:50:00.000Z