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.

JavaScriptのmapメソッドは、オブジェクトの複数のkeyを指定して、valueにアクセスできる

Posted at

分かる人には当たり前ですが、mapメソッドはオブジェクト型のデータもループを回すことができます

const kvArray = [
  { key: 1, value: 10 },
  { key: 2, value: 20 },
  { key: 3, value: 30 },
];

const reformattedArray = kvArray.map(({ key, value }) => ({ [key]: value }));

結果
スクリーンショット 2023-09-19 15.55.23.png

このように、オブジェクトの複数のkeyを指定して、valueにアクセスする事ができます。

よく使うやつはこれです。
スクリーンショット 2023-09-19 15.59.05.png

単純に配列の中であるデータを一つずつ取り出すやつです。

配列そのものや、index番号も引数で取れます。
スクリーンショット 2023-09-19 16.00.23.png

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