Skip to content

Instantly share code, notes, and snippets.

@dviramontes
Created September 10, 2017 21:53
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
flatten array of arbitrary length
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