Created
November 16, 2018 03:31
-
-
Save turizoft/46ed7bb658d6229b7ef5dcc77b9baaf0 to your computer and use it in GitHub Desktop.
Flatten array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const testArray = [[1, 2, 3], 4, 5, [[6], [7, 8, [9, 10]], 11, 12], 13] | |
const flatten = (array) => | |
array.reduce((memory, element) => | |
Array.isArray(element) | |
? memory.concat(flatten(element)) | |
: memory.concat(element) | |
, []) | |
flatten(testArray) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment