Created
May 25, 2016 16:29
-
-
Save supernoveau/35c73773b0493d17384166eb52bd56b5 to your computer and use it in GitHub Desktop.
This file contains 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
function flatten(arr) { | |
return arr.reduce( (flat, toFlatten) => { | |
return flat.concat(Array.isArray(toFlatten) ? flatten(toFlatten) : toFlatten); | |
}, []); | |
} | |
console.log( flatten([[1,2,[3]],4]) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment