Skip to content

Instantly share code, notes, and snippets.

@alexislagante
Created May 13, 2016 14:50
Show Gist options
  • Save alexislagante/38f5cf850b4f44b962497451261c12b4 to your computer and use it in GitHub Desktop.
Save alexislagante/38f5cf850b4f44b962497451261c12b4 to your computer and use it in GitHub Desktop.
Flatten nested arrays
function flatten(arr) {
return arr.reduce(function(res, x) {
if (typeof x.length !== 'undefined' && x.length > 0)
x = flatten(x);
return res.concat(x)
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment