Skip to content

Instantly share code, notes, and snippets.

@victoriadrake
Created May 19, 2017 13:40
Show Gist options
  • Save victoriadrake/af4b84e561821dbefef13e40077f85f3 to your computer and use it in GitHub Desktop.
Save victoriadrake/af4b84e561821dbefef13e40077f85f3 to your computer and use it in GitHub Desktop.
function flatten(arr) {
if (Array.isArray(arr)) {
return arr.reduce(function(done,curr){
return done.concat(flatten(curr));
}, []);
} else {
return arr;
}
}
// [ 1, 2, 3, 4 ]
@w0rldart
Copy link

Would you mind formatting the code? :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment