GMT/UTC time 형식 “2023-02-02” format으로 change

Davina·2023년 2월 2일
0

CSS

목록 보기
8/8
//checkin checkout date 형식 변환
//Wed Apr 20 2022 00:00:00 GMT+0200 => 2022-04-20
export const DateFormat = (d1) => {
  const date = new Date(d1);
  const year = date.getFullYear();
  const month = ("0" + (1 + date.getMonth())).slice(-2);
  const day = ("0" + date.getDate()).slice(-2);
  return `${year}-${month}-${day}`;
};
profile
[많을 (다) 빛날 (빈)] 빛이나는 사람이 되고 싶습니다

0개의 댓글