Skip to content

Instantly share code, notes, and snippets.

@BerezhniyDmitro
Forked from zmts/flat.md
Created October 25, 2018 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BerezhniyDmitro/b2b77241992a0c47ffbb5166c852b6d1 to your computer and use it in GitHub Desktop.
Save BerezhniyDmitro/b2b77241992a0c47ffbb5166c852b6d1 to your computer and use it in GitHub Desktop.
Flat Array

Flatten array in ES6

[1, 2, 3, [4, 5, [6, 7]]].flat() // >> [1, 2, 3, 4, 5, [6, 7]]
[1, 2, 3, [4, 5, [6, 7]]].flat(Infinity) // >> [1, 2, 3, 4, 5, 6, 7]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment