JavaScript sort 참고 : http://www.w3schools.com/jsref/jsref_sort.asp
var testArray = [ {"id" : 1, "total" : 3}, {"id" : 2, "total" : 20}, {"id" : 3, "total" : 12}, {"id" : 4, "total" : 9}, {"id" : 3, "total" : 24} ]; function custonSort(a, b) { if(a.total == b.total){ return 0} return a.total > b.total ? 1 : -1; } testArray.sort(custonSort); console.log(testArray);
<< 정렬 결과 >>
[
,
,
,
,
]
간단하게 예제를 만들어봤다.
난 전혀 다른 곳을 파고 있었던 것이다.
'Javascript' 카테고리의 다른 글
Javascript, Json Array 정렬하기 sorting (2) | 2013.07.10 |
---|---|
Javascript, Date, 이번달의 첫날과 마지막날 알아내기 (0) | 2012.05.15 |
클라이언트 측 객체 계층구조 (0) | 2011.09.16 |
전화번호 검증 스크립트(숫자만 입력 가능) (0) | 2011.08.16 |
<article> 과 <section>의 차이점 (0) | 2011.04.18 |