##概要
DynamoDB で日付を含むデータを取得し、新しい順で並び変えたときの備忘録です。
##ソースコード
var Items = [
{
userId: "0001",
createdAt: "2021-06-03T06:10:18.782Z"
},
{
userId: "0002",
createdAt: "2021-06-03T07:06:47.336Z"
}
];
Items.sort((a,b) => new Date(b.createdAt) - new Date(a.createdAt));
console.log(Items);
##結果
[ { userId: '0002', createdAt: '2021-06-03T07:06:47.336Z' },
{ userId: '0001', createdAt: '2021-06-03T06:10:18.782Z' } ]