0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【JS】オブジェクト内の要素をキーにして並べ替え

Last updated at Posted at 2023-01-04

やりたいこと

以下のようなオブジェクトがあったとします。
今回は各メンバーをscoreの高い順に並べ替えたいと思います。

let member = {
0 : {name : 'タナカ', score : 70}, 
1 : {name : 'ヤマダ', score : 80},
2 : {name : 'スズキ', score : 100},
3 : {name : 'サトウ', score : 60},
4 : {name : 'ヨシダ', score : 75}
}

実装

以下のようにすることで並べ替えることができます。

let result = Object.keys(member)
                    .map(function (key) {
                        return member[key]
                    })
                    .sort(function (a, b) {
                        return b.score < a.score ? -1 : 1 
                    })

解説すると、以下の流れで処理を行っています。

① .mapメソッドでオブジェクトのキー配列を取得
② .sortメソッドで並び替え

昇順にしたいときは最後の部分を逆にしてあげればOKです。

let result = Object.keys(member)
                    .map(function (key) {
                        return member[key]
                    })
                    .sort(function (a, b) {
                        return a.score < b.score ? -1 : 1 
                    })

是非参考にしてみてください。

0
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?