본문 바로가기
자바스크립트

[Javascript] 문자 날짜 정렬하기

by devebucks 2023. 1. 9.
728x90

예시

다음 객체가 api로 넘어왔다. 가장 최신순으로 정렬하려고 한다.

 

 

방법

attendanceScheduleList.sort(function (comp1, comp2) {
        if (comp1.start < comp2.start) {
          return 1;
        } else if (comp1.start > comp2.start) {
          return -1;
        }
        return 0;
      });
728x90

댓글