Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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