1
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 3 years have passed since last update.

[TypeScript] 配列内の重複オブジェクトのインデックスを取得する

Posted at

オブジェクトの配列のなかで、キーが重複しているオブジェクトのインデックスを取得する必要があったので、備忘録として残しておきます。
言葉だと伝わりにくいですが、以下のニュアンスとなります。

sample.js
const list = [
  { id: 1, name: "banana" },
  { id: 2, name: "apple" },
  { id: 3, name: "grape" },
  { id: 2, name: "apple" },
];

// idが重複している 1, 3 の値を取得したい

書き方は色々あると思いますが、以下で対応しました。

sample.js
// for文で回すが、重複がある場合はduplicateLengthが1より大きくなる
for (let i = 0; i < list.length; i++) {
  const duplicateLength = list.filter((obj) => obj.id === list[i].id).length;
  duplicateLength > 1 ? console.log("index",i) : null;
}

> "index" 1
> "index" 3
1
0
0

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
1
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?