JavaScript - 현재 시간 Timestamp 가져오기

자바스크립트에서 현재 시간 또는 특정 시간의 Timestamp를 가져오는 방법을 소개합니다. Timestamp는 1970년 1월 1일부터 지금까지 경과한 시간을 millisecond로 변환한 값입니다. 서로 다른 시간을 비교할 때 숫자의 크기 비교만으로 시간 상의 전, 후를 비교를 할 수 있습니다.

1. 현재 시간에 대한 Timestamp : Date.now()

Date.now()는 현재 시간의 Timestamp를 리턴합니다. 아래와 같이 Timestamp를 가져올 수 있습니다.

const time = Date.now();
console.log(time);

Output:

1651402520695

2. 현재 시간에 대한 Timestamp : Date.getTime()

Date는 객체에 저장된 시간을 Timestamp로 리턴하는 getTime() 함수를 제공합니다. 아래와 같이 Timestamp를 가져올 수 있습니다.

const date = new Date();
console.log(date.getTime());

Output:

1651402633659

3. 특정 시간에 대한 Timestamp

new Date('YYYY-MM-DD')는 특정 날짜에 대한 Date 객체를 생성합니다. getTime()으로 그 시간에 대한 Timestamp를 가져올 수 있습니다.

const date = new Date('2010-05-25');
console.log(date.getTime());

Output:

1274745600000

문자열로 된 날짜를 Date 객체로 변환하는 방법은 JavaScript - 문자열을 날짜(Date)로 변환하는 방법를 참고해주세요.

4. Timestamp를 second, year 등으로 변환

Timestamp는 1970/01/01 부터 지금까지 경과된 시간의 millisecond입니다. 1000으로 나누면 초로 변환되고, 365*24*60*60*1000으로 나누면 년으로 변환됩니다.

const time = Date.now();
console.log("seconds since 1970-01-01: " + Math.floor(time/1000));
console.log("years since 1970-01-01: " + Math.floor(time/(365*24*60*60*1000)));

Output:

seconds since 1970-01-01: 1651402866
years since 1970-01-01: 52

5. Timestamp를 Date 객체로 변환

Date()의 생성자에 Timestamp를 인자로 전달하면 그 시간에 대한 Date 객체를 생성합니다. Timestamp를 Date로 변환하면 YYYY-MM-DD 형식으로 날짜를 출력할 수 있습니다.

const date = new Date(1651401879369);
console.log(date);
console.log(date.getTime());

Output:

2022-05-01T10:44:39.369Z
1651401879369
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha