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

현재 날짜/시간(초) 가져오기 - JavaScript?

<시간/>

처음에는 현재 날짜를 가져옵니다 -

var currentDateTime = new Date();

현재 날짜/시간을 초 단위로 얻으려면 getTime()/1000을 사용하십시오.

예시

다음은 코드입니다 -

var currentDateTime = new Date();
console.log("The current date time is as follows:");
console.log(currentDateTime);
var resultInSeconds=currentDateTime.getTime() / 1000;
console.log("The current date time in seconds is as follows:")
console.log(resultInSeconds);

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

node fileName.js.

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

출력

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

The current date time is as follows:
2020-08-28T16:13:35.987Z
The current date time in seconds is as follows:
1598631215.987