Skip to content

Instantly share code, notes, and snippets.

@MaxXxiMast
Created May 25, 2017 13:32
Show Gist options
  • Save MaxXxiMast/bcc40391df3805d4cd55a96278cd64a7 to your computer and use it in GitHub Desktop.
Save MaxXxiMast/bcc40391df3805d4cd55a96278cd64a7 to your computer and use it in GitHub Desktop.
Function to flatten a multi dimensional array
function flatten(arr) {
return arr.reduce(function (flat, toFlatten) {
return flat.concat(Array.isArray(toFlatten) ? flatten(toFlatten) : toFlatten);
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment