preproject 1.2.

hanna·2023년 1월 1일
0

TIL

목록 보기
7/20
  // 가입일 구하기
const getDateDiff = (d1, d2) => {
    const date1 = new Date(d1);
    const date2 = new Date(d2);

    const diffDate = date1.getTime() - date2.getTime();

    return Math.abs(diffDate / (1000 * 60 * 60 * 24)); // 밀리세컨 * 초 * 분 * 시 = 일
  };

  getDateDiff("2021-09-01", "2021-10-01");

0개의 댓글

관련 채용 정보