본문 바로가기
프로그래밍/React Native(2018)

[React Native] array를 alphabetically 배열하는 방법

by 쿼카퀀트 2019. 9. 29.
728x90
users.sort(function(a, b){
    if(a.firstname < b.firstname) return -1;
    if(a.firstname > b.firstname) return 1;
    return 0;
})

위 코드 응용

728x90

댓글