728x90
homes.sort(
function(a, b) {
if (a.city === b.city) {
// Price is only important when cities are the same
return b.price - a.price;
}
return a.city > b.city ? 1 : -1;
});
'WEB > JavaScript' 카테고리의 다른 글
자바스크립트 async와 await (0) | 2022.07.04 |
---|---|
delete operator (0) | 2021.08.14 |
JavaScript Sort by Two Fields (0) | 2021.06.21 |
[JavaScript] 자바스크립트 2차원 배열 선언 및 사용법 (0) | 2021.06.11 |
Implementing Bubble Sort in Javascript (0) | 2021.06.11 |