Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Jul 20, 2024
1 parent b59497a commit 53a8d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/basic/map-and-set/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ console.log(results); // => ["key1:value1","key2:value2"]
これは配列からグループ分けしたオブジェクトを作成する[`Object.groupBy`][]と同じく、ES2024で追加されたメソッドです。

`Map.groupBy`メソッドは、第1引数に配列、第2引数にグループ分けの条件を返すコールバック関数を渡します。
次のコードでは、投票結果の配列である`votes`の、`vote`プロパティをみて`yes``no`にグループ分けしたマップを作成しています。
次のコードでは、配列`votes`の各要素の`vote`プロパティをみて`yes``no`にグループ分けしたマップを作成しています。

{{book.console}}
<!-- doctest:meta:{ "ECMAScript": 2024 } -->
Expand Down

0 comments on commit 53a8d3b

Please sign in to comment.