본문 바로가기
카테고리 없음

자바스크립트 날짜간의 차이 구하기 ( yyyyMMdd 형식 )

by 애플 로그 2021. 2. 20.
반응형

자바스크립트 날짜간의 차이 구하기 ( yyyyMMdd 형식 )

 

javascript에서 두날짜간의 차이 일수를 구해야할 일이 있을때 사용하면 된다.

        function betweenDay(firstDate, secondDate)
        {
             
            var firstDateObj = new Date(firstDate.substring(0, 4), firstDate.substring(4, 6) - 1, firstDate.substring(6, 8));
            var secondDateObj = new Date(secondDate.substring(0, 4), secondDate.substring(4, 6) - 1, secondDate.substring(6, 8));
            var betweenTime = Math.abs(secondDateObj.getTime() - firstDateObj.getTime());
            return Math.floor(betweenTime / (1000 * 60 * 60 * 24));
        }

 


       betweenDay('20210201','20210207');
        // 결과값 : 6

       betweenDay('20210201','20210228');
       //  결과값 : 27

댓글