Skip to content

Instantly share code, notes, and snippets.

@juliandescottes
Created May 5, 2015 12:55
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 juliandescottes/f37cca34f1e1e574a1fd to your computer and use it in GitHub Desktop.
Save juliandescottes/f37cca34f1e1e574a1fd to your computer and use it in GitHub Desktop.
Flatten reduce
[[1,2],[3,4],[5,6]].reduce(function (previous, n) {
return previous.concat(n)
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment