Created
September 10, 2017 21:53
-
-
Save dviramontes/889daac853885140bf387a473449cdea to your computer and use it in GitHub Desktop.
flatten array of arbitrary length
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 flattenArray(arr) { | |
return arr.reduce((acc, e) => { | |
if(Array.isArray(e)){ | |
return acc.concat(flattenArray(e)); | |
} | |
acc.push(e); | |
return acc; | |
}, []); | |
} | |
const a = [ [ 1, 2, [ 3 ] ], 4 ]; | |
console.log(flattenArray(a)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment