Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 93 Bytes

2d-array-join.md

File metadata and controls

5 lines (4 loc) · 93 Bytes

2d array join

[[1,2],[3,4]].map(e => e.join(':')).join(';'); // 1:2;3:4