Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidJBarnes/677f989141137772c4ee60cc8a7f36f7 to your computer and use it in GitHub Desktop.
Save DavidJBarnes/677f989141137772c4ee60cc8a7f36f7 to your computer and use it in GitHub Desktop.
Reduce Array
[[1,2,[3]],4].reduce(function(a, b){
return a.concat(b);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment