Skip to content

Instantly share code, notes, and snippets.

@amarsyla
Created January 19, 2019 00:52
Show Gist options
  • Save amarsyla/cb40bafa7997e7b4f047bafce1b80f2b to your computer and use it in GitHub Desktop.
Save amarsyla/cb40bafa7997e7b4f047bafce1b80f2b to your computer and use it in GitHub Desktop.
const flatten = (array) => {
let flattened = [];
for (const item of array) {
flattened = flattened.concat(Array.isArray(item) ? flatten(item) : item);
}
return flattened;
};
console.log(flatten([[1,2,[3]],4])); // [1, 2, 3, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment