Skip to content

Instantly share code, notes, and snippets.

@victoriadrake
Created May 19, 2017 13:36
Show Gist options
  • Save victoriadrake/005240a0978370a87eb2fefd74eb1439 to your computer and use it in GitHub Desktop.
Save victoriadrake/005240a0978370a87eb2fefd74eb1439 to your computer and use it in GitHub Desktop.
var flat = arr.reduce(function(done,curr){
return done.concat(curr);
}, []);
// [ 1, 2, 3, [ [ 4 ] ] ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment