Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
What's the command to make [ [1,2], [3,4] ] become [1,2,3,4] ?
(asked on behalf of someone else)
.flatメッセージはあなたが求めているものです:
.flat
[[1,2],[3,4]].flat
.flattenこの場合、同じ結果が得られるものもあります(ただし、 .flatten1つの「レベル」のみをフラット.flat化しますが、完全にフラットな配列までフラット化します)
.flatten