📅  最后修改于: 2022-03-11 14:48:31.705000             🧑  作者: Mango
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;
});