-
-
Save KhanMaytok/4b0b23d6c0bf15a55ee29600f48702a1 to your computer and use it in GitHub Desktop.
es6 flat 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 flatten = arr => arr.reduce( | |
(a, b) => a.concat(Array.isArray(b) ? flatten(b) : b), [] | |
); | |
testArr = [[1,2,[3]],4] | |
console.log(flatten(testArr)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment