티스토리 뷰

Frontend

[Front/Javascript] Timestamp to Date

ellie.strong 2021. 11. 24. 16:07
728x90

 

서버에서 받아온 timestamp 형식의 시간 데이터를 javascript의 Date 형식으로 변환하면 연도, 월, 일, 시간, 분 등을 추출할 수 있다. 

const sendAt = "2021-11-23T20:33:58.876+00:00";
const date = new Date(sendAt); // Date 형식으로 변환
console.log(date.getMonth()+1, date.getDate(), date.getHours(), date.getMinutes());

 

728x90
댓글
공지사항
최근에 올라온 글