最も簡単な答え
array.sort(function(a,b){
// Turn your strings into dates, and then subtract them
// to get a value that is either negative, positive, or zero.
return new Date(b.date) - new Date(a.date);
});
より一般的な回答
array.sort(function(o1,o2){
if (sort_o1_before_o2) return -1;
else if(sort_o1_after_o2) return 1;
else return 0;
});
またはもっと簡潔に:
array.sort(function(o1,o2){
return sort_o1_before_o2 ? -1 : sort_o1_after_o2 ? 1 : 0;
});
一般的で強力な答え
すべての配列でシュワルツ変換を使用して、カスタムの列挙不可能なsortBy
関数を定義します。
(function(){
if (typeof Object.defineProperty === 'function'){
try{Object.defineProperty(Array.prototype,'sortBy',{value:sb}); }catch(e){}
}
if (!Array.prototype.sortBy) Array.prototype.sortBy = sb;
function sb(f){
for (var i=this.length;i;){
var o = this[--i];
this[i] = [].concat(f.call(o,o,i),o);
}
this.sort(function(a,b){
for (var i=0,len=a.length;i<len;++i){
if (a[i]!=b[i]) return a[i]<b[i]?-1:1;
}
return 0;
});
for (var i=this.length;i;){
this[--i]=this[i][this[i].length-1];
}
return this;
}
})();
次のように使用します。
array.sortBy(function(o){ return o.date });
日付が直接比較できない場合は、比較可能な日付を作成します。
array.sortBy(function(o){ return new Date( o.date ) });
値の配列を返す場合、これを使用して複数の基準でソートすることもできます。
// Sort by date, then score (reversed), then name
array.sortBy(function(o){ return [ o.date, -o.score, o.name ] };
詳細については、 http://phrogz.net/JS/Array.prototype.sortBy.jsを参照してください。