Created
May 5, 2015 12:55
-
-
Save juliandescottes/f37cca34f1e1e574a1fd to your computer and use it in GitHub Desktop.
Flatten reduce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[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