compare1 Javascript Date compare // -1 : adate가 작음, 0: 같음, 1: adate가 큼function compareDate(adate, bdate) { // 연도, 월, 일, 시, 분 순서대로 비교 if (adate.getFullYear() !== bdate.getFullYear()) { return adate.getFullYear() bdate.getFullYear() ? -1 : 1; } if (adate.getMonth() !== bdate.getMonth()) { return adate.getMonth() bdate.getMonth() ? -1 : 1; } if (adate.getDate() !== bdate.getDate()) { return adate.getDate() bdate... 2022. 1. 25. 이전 1 다음 반응형